-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
67 lines (64 loc) · 1.11 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
59
60
61
62
63
64
65
66
67
*{
margin:0;
padding:0;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
body{
background-image: url(./starry.jpeg);
height:100vh;
display:flex;
}
.game-title{
color:goldenrod;
font-size:20px;
}
.planet-box{
width:60%;
display:flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.progress-box{
width: 40%;
display:grid;
grid-template-rows: 50% 50%;
}
.next-planet{
background-image: url(./moonSmall.png);
width: 80px;
height:80px;
align-self: flex-end;
}
#planet{
width:200px;
height:200px;
}
#planet:hover{
width:220px;
height:220px;
}
#planet:active{
width:200px;
height:200px;
}
.upgrade-bar{
display:flex;
flex-direction:column;
justify-content: space-around;
align-items: center;
}
.button{
font-size:10px;
height:20%;
width:100px;
}
.exploration-box{
display:flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
.money-label{
color:green;
}