blob: 7daef468206e48e5f4d501c56ff8d958db4e1f5d (
plain) (
blame)
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
|
body {
color: #222;
background-color: #222;
font-family: 'Lato', sans-serif;
padding: 0em;
margin: 0em;
-webkit-user-select: none;
user-select: none;
}
div#container {
width: 20em;
height: 11.2em;
padding: 1em;
margin: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: #ddd;
border-radius: 1em;
}
h1 {
font-size: 1.6em;
text-align: center;
padding: 0em;
margin: 0em;
}
div.section {
margin: 1em;
}
div.section p {
margin: 0.2em 0em;
}
div.section p.option {
margin-left: 1em;
}
div#button {
text-align: center;
}
p#status {
color: #390;
}
button {
color: #ddd;
background-color: #222;
font-family: inherit;
font-size: inherit;
font-weight: bold;
padding: 1em;
border: 0em;
border-radius: 1em;
}
button:hover {
background-color: #130;
}
button:focus {
outline: 0;
}
|