-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (59 loc) · 1.08 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
body {
background-color: #edf5e1;
}
#header {
width: 80vw;
display: grid;
grid-template-areas: "title score-label score-label"
"title score score"
"description undo restart";
grid-template-columns: 70% 15% 15%;
grid-template-rows: 20px 80px 30px;
margin: 20px auto 20px auto;
padding: 10px;
}
#title {
grid-area: title;
height: 100px;
font-size: 80px;
font-family: Quicksand;
}
#score-label {
grid-area: score-label;
height: 20px;
font-size: 16px;
text-align: center;
margin: 10px auto 0px auto;
}
#score {
grid-area: score;
height: 80px;
font-size: 48px;
margin: auto;
}
#description {
grid-area: description;
font-size: 15px;
margin: auto auto auto 0px;
}
#undo {
grid-area: undo;
background: none;
border: none;
}
#restart {
grid-area: restart;
background: none;
border: none;
}
button:hover {
color: #bbb;
}
@media screen and (orientation: landscape) {
#header {
width: 400px;
}
}
#log {
font-size: 10px;
}