-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenderer.css
67 lines (57 loc) · 984 Bytes
/
renderer.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
* {
cursor: default;
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
user-select: none;
}
button, button:active {
border-style: none;
font-size: larger;
background-color: grey;
color: white;
border-radius: 7px;
padding: 10px 20px;
width: 100px;
}
button:active {
background-color: dimgray;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
padding-bottom: 5px;
text-align: center;
}
h1 {
text-align: center;
}
input {
height: 40px;
font-size: 3em;
width: 1.66em;
font-family: monospace;
border: 0;
}
p, div {
text-align: center;
}
#count-down-control {
margin-top: 15px;
}
#stand-up-logo {
display: block;
margin: 0 auto;
max-width: 300px;
}
.hidden {
display: none;
}
@media (prefers-color-scheme: dark) {
body, input {
background-color: #000;
}
body, h1, input, p, span {
color: #fff;
}
}