-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
72 lines (57 loc) · 988 Bytes
/
styles.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
/* css reset */
*,*::before,*::after {
box-sizing: border-box;
}
* {
margin: 0;
padding: 0;
/* font: inherit; */
}
body {
min-height: 100vh;
display: grid;
place-items: center;
}
img, picture, video {
display: block;
max-width: 100%;
}
/* utility classes */
.center {
text-align: center;
}
/* specific styling */
.grid_canvas {
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.row {
display: flex;
}
.cell {
width: 8px;
height: 8px;
}
.border {
border: 0.2px solid rgba(34, 11, 11, 0.494);
}
.content_wrapper {
display: flex;
flex: 3fr 1fr;
flex-wrap: wrap;
justify-content: center;
}
.controls {
margin: 20px;
}
.controls-div{
display: flex;
align-items: center;
}
/* on off button switch */
.switch{
display: inline-block;
width: 2rem;
font-weight: bolder;
color: black;
margin-left: 1rem;
}