-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (75 loc) · 1.21 KB
/
style.css
File metadata and controls
91 lines (75 loc) · 1.21 KB
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
body {
background-color: black;
color: white;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
margin: 0;
}
.container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
}
canvas {
width: 100%;
height: auto;
}
@media (min-width: 1000px) {
.container {
/* display: flex;
justify-content: center;
height: 100%; */
flex-direction: row;
}
canvas {
height: 100%;
width: auto;
}
}
.controls {
background-color: #333;
padding: 1.25em 2em;
flex-grow: 1;
overflow: auto;
}
.controls > * {
display: block;
margin-top: 0.75em;
}
.range-display {
margin-left: 0.5em;
font-size: 0.85em;
color: #ccc;
}
input[type="range"] {
width: 95%;
}
#copy-url {
z-index: -100;
position: fixed;
top: -10em;
}
button {
background-color: #444;
color: white;
padding: 0.5em 1em;
font-size: 0.8em;
cursor: pointer;
transition: background-color 0.2s ease-in-out;
border: none;
border-radius: 0.5em;
}
.button-group {
margin: 1em 0 1.5em;
}
button:hover {
background-color: #555;
}
button:active {
background-color: #666;
}
button:disabled {
background-color: #252525;
color: #ccc;
cursor: default;
}