-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathindex.css
More file actions
69 lines (61 loc) · 1.22 KB
/
index.css
File metadata and controls
69 lines (61 loc) · 1.22 KB
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
body {
margin: 0;
padding: 20px;
background: #373841;
color: white;
font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell',
'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#status {
padding: 10px;
margin-bottom: 10px;
background: rgba(255,255,255,0.1);
border-radius: 4px;
}
#flag {
font-size: 1.4em;
padding: 15px;
margin-bottom: 20px;
background: rgba(255,255,255,0.05);
border-radius: 4px;
}
#controls {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}
#controls > div {
padding: 10px;
background: rgba(255,255,255,0.05);
border-radius: 4px;
}
#controls h3 {
margin: 0 0 8px 0;
font-size: 0.9em;
text-transform: uppercase;
opacity: 0.7;
}
button {
padding: 6px 14px;
margin: 3px 2px;
border: 1px solid rgba(255,255,255,0.3);
border-radius: 4px;
background: rgba(255,255,255,0.1);
color: white;
cursor: pointer;
font-size: 0.9em;
}
button:hover {
background: rgba(255,255,255,0.2);
}
#log {
max-height: 200px;
overflow-y: auto;
font-family: monospace;
font-size: 0.8em;
line-height: 1.5;
opacity: 0.8;
}