-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.css
63 lines (56 loc) · 1017 Bytes
/
game.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
h1 {
font-family: 'Press Start 2P', cursive;
font-size: 3rem;
margin: 5%;
color: #FEF2BF;
text-align: center;
}
#green {
border: 10px solid black;
background-color: green;
height: 200px;
width: 200px;
border-radius: 20%;
position: relative;
left: 500px;
}
#red {
border: 10px solid black;
background-color: red;
height: 200px;
width: 200px;
border-radius: 20%;
position: relative;
left: 800px;
bottom: 220px;
}
#yellow {
border: 10px solid black;
background-color: yellow;
height: 200px;
width: 200px;
border-radius: 20%;
position: relative;
left: 800px;
bottom: 200px;
}
#blue {
border: 10px solid black;
background-color: blue;
height: 200px;
width: 200px;
border-radius: 20%;
position: relative;
left: 500px;
bottom: 420px
}
body {
background-color: navy;
}
.lighten {
box-shadow: 0 0 20px white;
background-color: grey;
}
.red {
background-color: red;
}