-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (47 loc) · 869 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
.grid-container {
display: grid;
/*grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(4, 1fr);*/
justify-content: center;
align-content: center;
height: 600px;
width: 600px;
border: 3px solid black;
margin: auto;
margin-top: 30px;
}
.square {
background-color: white;
border: 1px solid rgba(0, 0, 0, 0.185);
}
.color {
background-color: black;
}
button {
display: block;
margin: auto;
margin-top: 30px;
height: 40px;
}
.center-white {
display: flex;
justify-content: center;
color: white;
}
h2 {
font-size: 16px;
}
#grid-slider {
display: flex;
flex-wrap: wrap;
justify-content: center;
grid-row: 2;
width: 150px;
margin: auto;
font-size: 20px;
font-weight: bold;
color: white;
}
body {
background-color: rgb(37, 36, 36);
}