-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (81 loc) · 1.31 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
91
92
93
94
95
96
97
98
99
100
@import url("https://fonts.googleapis.com/css2?family=Gochi+Hand&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap");
body {
margin: 0;
background: linear-gradient(180deg, #6bb4f3, #d3efff);
}
h1 {
font-family: "Gochi Hand", cursive;
}
h1 {
font-size: 150px;
margin: 0;
}
h2 {
font-size: 40px;
font-family: "Source Sans Pro", sans-serif;
}
p,
h4 {
font-size: 24px;
font-family: "Source Sans Pro", sans-serif;
}
.flex {
display: flex;
justify-content: center;
min-height: 100vh;
align-items: center;
}
#currentScore,
#highScore {
position: absolute;
color: #0d7dce;
}
#currentScore {
top: 20px;
left: 100px;
}
#highScore {
top: 20px;
right: 100px;
}
.text {
color: white;
text-align: center;
}
.startingWrapper,
.restartWarpper {
position: absolute;
width: 1366px;
height: 768px;
background: #064b7cb3;
backdrop-filter: blur(5px);
}
.scores {
position: absolute;
width: 1366px;
height: 768px;
}
.startingChildWrapper {
padding-top: 100px;
}
.start-btn {
background: #139dff;
padding: 15px 100px;
border: none;
font-size: 30px;
margin-top: 30px;
border-radius: 100px;
}
.start-btn:hover {
background: #0d7dce;
}
.hidden {
display: none;
}
.center {
text-align: center;
}
.icons {
width: 50px;
}