-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (73 loc) · 1.21 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
body{
padding:0 100px;
}
#start-screen {
margin: 25px;
width: 550px;
height: 750px;
background-color: #99C24D;
font-family: 'Yusei Magic', sans-serif;
font-size: 1.2em;
border-radius: 50px;
line-height: 1.3;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
#end-screen {
margin: 25px;
width: 550px;
height: 750px;
font-family: 'Yusei Magic', sans-serif;
border-radius: 50px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
#start-screen h1 {
padding: 0px;
margin: 0px;
}
#end-screen h1 {
font-size: 3em;
}
#end-screen h2 {
font-size: 2em;
line-height: 2;
}
#record {
text-align: center;
}
#player {
background-color: #c2ad4d
}
#level {
position: absolute;
left: 310px;
top: 400px;
font-size: 40px;
font-family: 'Yusei Magic', sans-serif;
}
#alert {
position: absolute;
left: 268px;
top: 200px;
font-size: 20px;
font-family: 'Yusei Magic', sans-serif;
text-align: center;
}
li {
padding: 0 0 10px 0;
list-style-type: none;
}
li::before {
content: "✈︎ ";
color: red;
font-weight: bold;
font-size: 1.4em;
}
#play {
background-color: #048BA8
}