-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (56 loc) · 1.09 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
body {
font-family: 'Press Start 2P', cursive;
margin: 0px;
background-color: rgb(161, 60, 26);
/* padding: 80px 30px 70px 30px; I dont know if this is better or margin on the game-container */
}
.game-container {
display: flex;
flex-direction: column;
align-items: center;
margin: 80px 30px 70px 30px;
}
.pill-container {
display: flex;
justify-content: space-evenly;
margin: 80px 30px 70px 30px;
}
.pill-image{
width: 350px;
}
.game-title {
font-size: 40px;
margin: 80px 0px 80px 0px;
color: rgb(236, 162, 55);
font-style: italic;
text-align: center;
/* line-height: 55px; I don't know what it does */
}
.game-subtitle {
font-size: 30px;
margin: 120px 0px 80px 0px;
color: rgb(140, 193, 15);
text-align: center;
/* line-height: 55px; I don't know what it does */
}
.egg-image {
width: 350px;
margin: 0px 0px 30px 0px;
}
.egg-image:hover {
cursor: pointer;
}
.counter {
font-size: 33px;
color: rgb(236, 162, 55);
}
.app-version {
position: absolute;
top: 20px;
left: 20px;
text-decoration: none;
color: black;
}
.app-version {
cursor: none;
}