-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (41 loc) · 725 Bytes
/
Copy pathstyles.css
File metadata and controls
54 lines (41 loc) · 725 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
body{
background-color: #011f3f;
text-align: center;
}
h1{
color: #fef2bf;
font-size: 3rem;
font-family: 'Press Start 2P', cursive;
}
.btn{
width:200px;
height:200px;
border: 10px solid black;
border-radius: 20%;
text-align: center;
display: inline-block;
margin: 25px;
}
.pressed {
background-color: grey;
box-shadow: 0 0 20px white;
}
.game-over{
background-color: red;
}
.red{
background-color: red;
}
.blue{
background-color: blue;
}
.green{
background-color: green;
}
.yellow{
background-color: yellow;
}
footer{
font-family: 'Press Start 2P', cursive;
color: #fef2bf;
}