-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
58 lines (51 loc) · 1.07 KB
/
styles.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
@font-face {
font-family:'flappy-bird';
src: url('assets/fonts/flappy-bird.ttf');
}
* {
color: white;
font-family: 'flappy-bird';
font-weight: 400;
}
.screen {
background-image: url('assets/images/background.png');
background-size: contain;
background-repeat: repeat-x;
display: flex;
flex-direction: column;
align-items: center;
width: 640px;
height: 360px;
}
.screen h1 {
display: inline-block;
font-size: 80px;
text-align: center;
text-shadow: 1px 1px 2px rgb(128, 128, 128, 128);
margin: 40px;
}
.screen ul {
list-style-type: none;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
flex-grow: 1;
padding: 0px;
}
.screen li {
background-color: #f73d72;
cursor: pointer;
font-size: 40px;
text-align: center;
border-radius: 12px;
padding: 8px;
width: 100px;
box-shadow: 2px 2px 4px 0px rgb(128, 128, 128, 128);
}
.screen li:hover {
background-color: #b42d54;
}
.screen li:active {
background-color: #f73d72;
}