blob: db8016b16e235d4675771d024bdd897b903957d2 (
plain)
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
|
body {
background: black;
color: #ddd;
font-family: arial, verdana, helvetica, sans-serif;
}
#help-toggle {
color: #ddd;
}
#text {
margin: 20px auto 20px auto;
}
h1 {
text-align: center;
}
#rate {
width: 6em;
}
.controls {
zoom: 200%;
}
#face {
background-image: url(face.png);
margin: 10px auto 10px auto;
zoom: 800%;
}
.hidden {
display: none;
}
@media (min-width: 992px) {
/* limit text with on large screens */
#text {
width: 50%;
}
}
|