-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (48 loc) · 970 Bytes
/
Copy pathstyle.css
File metadata and controls
57 lines (48 loc) · 970 Bytes
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
main {
position: relative;
background: #D7E6E9;
width: 100vw;
height: 100vh;
}
.status {
position: absolute;
left: 20px;
top: 20px;
font-family: 'Rubik', sans-serif;
font-size: 40px;
color: #0D3C3F;
}
.container {
position: absolute;
width: 500px;
height: 500px;
background: #91BBC4;
border: 1px solid #174C57;
box-sizing: border-box;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
display: flex;
justify-content: center;
align-items: center;
}
.board {
width: 450px;
height: 450px;
background: #91BBC4;
border: 1px solid #174C57;
display: flex;
flex-wrap: wrap;
}
.cell {
width: 150px;
height: 150px;
background: #9CD8E4;
border: 1px solid #174C57;
box-sizing: border-box;
font-size: 150px;
display: flex;
align-items: center;
justify-content: center;
font-family: Architects Daughter, sans-serif;
}