-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
66 lines (54 loc) · 837 Bytes
/
styles.css
File metadata and controls
66 lines (54 loc) · 837 Bytes
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 {
background-color: #DDDDDD;
font-family: 'Montserrat', sans-serif;
margin: 3%;
}
.gameTitle , #levelTitle{
color: #a60c40;
}
.subtitle {
color: #b3b3b3;
line-height: 0.3;
}
#levelTitle {
text-align: center;
}
.gameBox {
text-align: center;
margin: 5% auto auto;
width: 40%;
}
.color1 {
background-color: #a60c40;
}
.color2 {
background-color: #6600ff;
float: right;
}
.color3 {
background-color: #ffd633;
float: left;
}
.color4 {
background-color: #009933;
}
.playButton {
display: inline-block;
height: 150px;
width: 150px;
border: 5px solid #b3b3b3;
border-radius: 30%;
}
.pressed {
box-shadow: 0 0 20px white;
background-color: grey;
}
footer {
color: #b3b3b3;
margin: 3% auto auto;
text-align: center;
}
.gameOver {
background-color: #a60c40;
opacity: 0.8;
}