-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
75 lines (59 loc) · 1011 Bytes
/
stylesheet.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
@import url('http://fonts.cdnfonts.com/css/gidole');
:root {
font-family: 'Gidole';
font-weight: 700;
background-color: black;
}
.page {
background-color: rgb(73, 65, 56);
display: flex;
flex-direction: column;
justify-content: center;
}
.header {
background-color: cornflowerblue;
height: 300px;
display: flex;
justify-content: center;
align-items: center;
gap: 5px;
}
.blank-div {
color: cornflowerblue;
}
.title {
font-size: 70px;
color:beige;
}
.game {
background-color: rgb(133, 166, 228);
height: 800px;
display: flex;
justify-content: center;
align-items: center;
gap: 80px;
}
.game > .icon {
height: 100px;
width: 180px;
}
#start {
font-size: 60px;
font-weight: 900;
color: beige;
}
#start:hover {
color: white;
}
.icon:hover {
fill: azure;
}
.footer {
background-color: cornflowerblue;
height: 200px;
display: flex;
justify-content: space-evenly;
align-items: center;
font-size: 50px;
color: beige;
}