-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (79 loc) · 1.35 KB
/
style.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
html { height: 100%; overflow:hidden;}
body {
margin: 0;
padding: 0;
height: 100%;
border-top: 1px transparent solid;
margin-top: -1px;
position: relative;
align-items: center;
font-family: Verdana, sans-serif;
justify-content: space-evenly;
}
.inbox, .buttonbox, .scoreboard {
display: flex;
justify-content: space-between;
flex-wrap: nowrap;
}
.inbox {
justify-content: center;
}
#score, #streak {
width: 128px;
background-color: #4a4;
font-size: 24px;
padding: 16px;
text-align: center;
margin: 16px;
border-radius: 8px;
color: #fff;
}
button {
display: inline-block;
background-color: #666;
color: #fff;
padding: 16px 32px;
margin: 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 24px;
border-radius: 8px;
}
label {
font-size: 24px;
color: #666;
padding: 32px;
text-align: center;
margin: 16px;
}
input {
font-size: 24px;
color: #666;
padding: 16px;
text-align: center;
margin: 16px;
border-radius: 8px;
}
#result {
font-size: 24px;
color: #666;
padding: 16px;
text-align: center;
margin: 16px;
border-radius: 8px;
min-width: 256px;
}
#result.hidden {
visibility: hidden;
}
#result.missed {
display: block;
background-color: #444;
color: #fff;
}
#result.success {
display: block;
color: #fff;
background-color: #4a4;
}