-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (46 loc) · 742 Bytes
/
styles.css
File metadata and controls
53 lines (46 loc) · 742 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
body {
margin: 0px
}
.xy-center {
display: flex;
align-items: center;
justify-content: center
}
.container {
height: 100vh;
width: 100vw;
flex-direction: column;
display: flex;
align-items: center;
justify-content: center;
min-width: 600px;
min-height: 600px
}
.inner-container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 602px;
height: 602px
}
.cell {
border-width: 0px;
border-style: solid;
display: flex;
align-items: center;
justify-content: center;
width: 200px;
height: 200px;
font-size: 100px
}
.cell-center {
border-width: 1px
}
.cell-x {
border-left-width: 1px;
border-right-width: 1px
}
.cell-y {
border-top-width: 1px;
border-bottom-width: 1px
}