-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (63 loc) · 1.14 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
h1 {
font-family: 'Permanent Marker', cursive;
font-size: 80px;
text-shadow: 1px 4px gray;
}
body {
font-family: sans-serif;
background-color:rgb(61, 59, 59);
color:white;
}
.canvas {
display: grid;
/*grid-template-columns: repeat(70, 1fr);*/
width: 500px;
height: 500px;
border: 0.1px solid gainsboro;
}
.cell-border {
border: 0.1px solid gainsboro;
}
.controls, .main, .body, .header {
display: flex;
justify-content: center;
gap: 100px;
}
.controls {
flex-direction: column;
min-width: 200px;
justify-content: center;
gap: 10px;
align-items:stretch;
}
.body, .header {
margin-right: auto;
margin-left: auto;
flex-wrap: wrap;
}
button {
background-color: rgb(61, 59, 59);
border: 1px solid white;
padding: 5px;
color: white;
opacity: 0.8;
cursor: pointer;
}
button:hover {
opacity: 1;
}
.selected {
color: rgb(61, 59, 59);
background-color: white;
}
.selected.mode {
opacity: 1;
cursor:auto;
}
.modes {
margin-top: 20px;
margin-bottom: 20px;
display: flex;
flex-direction: column;
gap: 10px;
}