-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (70 loc) · 1.42 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* Color To Use */
/* Greeen Color */
/* 769656 */
/* Cream Color */
/* EEEED2 */
.dad-container {
display: flex;
align-items: center;
justify-content: center;
margin-top: 2rem;
}
.square {
background-color: #eeeed2;
width: 70px;
height: 70px;
}
.square.top-bold {
background-color: #eeeed2;
width: 70px;
border-width: 50;
border-color: black;
border-top-style: solid;
border-top-width: 5px;
height: 70px;
}
.square.right-bold {
background-color: #eeeed2;
width: 70px;
border-width: 50;
border-color: black;
border-right-style: solid;
border-right-width: 5px;
height: 70px;
}
.square.left-bold {
background-color: #eeeed2;
width: 70px;
border-width: 50;
border-color: black;
border-left-style: solid;
border-left-width: 5px;
height: 70px;
}
.square.bottom-bold {
background-color: #eeeed2;
width: 70px;
border-width: 50;
border-color: black;
border-bottom-style: solid;
border-bottom-width: 5px;
height: 70px;
}
.main-container {
display: grid;
border-radius: 5px;
grid-template-columns: repeat(9, 1fr);
height: (560 + 70) px;
/* 70px * 8 = 560px */
width: (560 + 70) px;
overflow: hidden;
}
.files:nth-of-type(odd) .square:nth-of-type(even) {
background-color: #fec366;
}
.files:nth-of-type(even) .square:nth-of-type(odd) {
background-color: #fec366;
}
img {
width: 100%;
}