-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (57 loc) · 991 Bytes
/
style.css
File metadata and controls
67 lines (57 loc) · 991 Bytes
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
html, body {
background: #121213;
color: #d7dadc;
font-family: sans-serif;
text-align: center;
text-transform: uppercase;
user-select: none;
}
* {
box-sizing: border-box;
}
h1 {
font-size: 35px;
}
.cell {
width: 60px;
height: 60px;
line-height: 64px;
vertical-align: middle;
/* text-align: center; */
/* align-items: center;
justify-content: center; */
border: 2px solid #3a3a3c;
display: inline-block;
margin: 3px;
font-size: 40px;
font-weight: bold;
}
.row {
margin-left: auto;
margin-right: auto;
width: 400px;
}
#grid {
margin-top: 150px;
/* width: 400px; */
/* margin-left: auto;
margin-right: auto; */
}
.present {
background: #b59f3b;
border-color: #b59f3b;
}
.correct {
background: #538d4e;
border-color: #538d4e;
}
.absent {
background: #3a3a3c;
}
/*
background: #121213
present (darkenedYellow): #b59f3b
correct (darkenedGreen): #538d4e,
absent, border color (grey): #3a3a3c
text color (white): #d7dadc
*/