-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (51 loc) · 897 Bytes
/
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
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
body {
background-color: black;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
font-family: "Roboto", sans-serif;
}
h3 {
color: #fff;
}
.rules {
color: #fff;
}
.grid {
display: flex;
width: 300px;
height: 300px;
background-color: rgb(37, 69, 198);
flex-wrap: wrap;
border: 1px solid;
}
.grid div {
width: 20px;
height: 20px;
}
.shooter {
background-color: rgba(255, 255, 255, 0.822);
}
.invader {
background-color: rgb(36, 180, 23);
border-radius: 20px;
}
.boom {
background-color: rgb(139, 9, 9);
}
.laser {
background-color: #fff;
}
.gratitude {
color: rgba(185, 31, 165, 0.603);
padding: 10px;
padding-left: 0;
padding-right: 0;
text-decoration: none;
}
.thanks {
color: rgba(255, 255, 255, 0.603);
padding: 10px;
}