-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
48 lines (45 loc) · 865 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
* {
box-sizing: border-box;
margin: 0px;
padding: 0px;
}
body {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
height: 100vh;
background-color: black;
color: #14ffbc; /* neon green */
text-shadow:
0 0 5px #39FF14,
0 0 10px #14ffbc,
0 0 15px #14ffbc,
0 0 20px #14ffbc,
0 0 22px #39FF14;
}
h1 {
position: absolute;
top: 0px;
left: 530px;
margin: 10px;
}
#ui {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 10px;
}
.container {
display: grid;
grid-template-columns: repeat(16, 1fr);
grid-template-rows: repeat(16, 1fr);
gap: 1px;
width: 500px;
height: 500px;
border: 1px solid rgb(246, 246, 246);
}
.container div {
background-color: #e0dcdc;
}