-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (50 loc) · 1.01 KB
/
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
59
*{
background-color: beige;
}
h1{
text-align: center;
}
.grid-container {
display: grid;
grid-template-columns: 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25%;
grid-template-rows: 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25% 6.25%;
background-color: #ffffff;
height:500px;
width:500px;
}
.grid-items {
border: 1px solid rgba(0, 0, 0, 0.8);
text-align: center;
}
.grid-container div{
background-color: rgba(255, 255, 255, 1);
}
.master-flex {
display: flex;
flex-direction: row;
justify-content: center;
gap :20px;
}
.colors{
display: flex;
flex-direction: column;
}
#white,#black {
height: 16px;
width: 16px;
border-style: none;
border-radius: 2px;
}
#white{
background-color: #ffffff;
border-color: black ;
}
#black{
background-color: #000000;
}
#reset {
margin-top: 4px;
}
.b {
background-color: rgb(0, 0, 0);
}