-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (85 loc) · 1.28 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
:root {
--bg-col: rgb(240, 240, 211);
--bg-col-hover: rgb(220, 220, 200);
}
html,
body {
margin: 0;
padding: 0;
font-family: "IBM Plex Mono", sans-serif;
font-weight: 300;
}
canvas {
display: block;
max-width: calc(100vw - 1em);
max-height: calc(100vw - 1em);
}
main {
/* height: 100vh; */
margin-top: 1em;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1,
h2 {
font-weight: normal;
}
h2 {
font-size: 1em;
}
ul {
list-style: none;
margin: 0 0 1em 0;
padding: 0;
}
li {
margin: 0;
}
#canvas-parent {
display: flex;
flex-direction: column-reverse;
}
.control {
display: inline-block;
min-width: 4em;
}
.control-info {
display: block;
margin: 0 0 1em 0;
}
.control-info p {
margin: 0 0 1em 0;
}
.information {
max-width: 20em;
}
a {
color: black;
}
button {
text-align: left;
width: 12em;
margin: 2px;
padding: 1px 2px;
background-color: var(--bg-col);
/* background-color: yellow; */
border: 0px solid white;
border-radius: 3px;
}
button:hover {
background-color: cyan;
}
button:active {
background-color: yellow;
}
@media (min-width: 320px) {
.control-info {
display: flex;
/* justify-content: space-between; */
}
/* .control-info p {
margin: 0;
} */
}