-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterface.css
93 lines (77 loc) · 1.29 KB
/
interface.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/* Fonts */
* {
font-family: 'Courier New', Courier, monospace;
}
/* CSS Reset */
*, *:before, *:after {
box-sizing: inherit;
}
html {
box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
margin: 0;
padding: 0;
font-weight: normal;
}
/* Container styling */
main {
margin: 1%;
}
section {
margin: 1%;
padding: 3px;
border-width: 3px;
border-style: solid;
border-color: #000000;
}
/* Button styling */
button{
font-weight: bold;
padding: 2px;
background-color: white;
border: 2px solid black;
margin-right: 5px;
}
/* Tooltip Styling */
.ui-helper-hidden-accessible {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.ui-tooltip {
padding: 10px 20px;
width: 400px;
border-radius: 20px;
background: white;
border: 2px solid black;
}
/* Format Ascii Art */
.flexbox {
display: inline-flex;
justify-content: flex-start;
align-items: center;
gap: 10px;
}
.flex-child {
width:fit-content;
}
pre {
text-align: left;
width:fit-content;
}
object {
height:100%;
margin: 0 auto;
width: 140px;
display: block;
}
#endgame {
width: fit-content;
margin: 0 auto;
}