-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
67 lines (56 loc) · 862 Bytes
/
main.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
body {
margin: 0;
padding: 0;
background-color: black;
font-family: 'Press Start 2P';
font-size: 1em;
}
label {
display: inline-block;
width: 200px;
}
input[type='range']{
width: 180px;
}
input[type='text']{
width: 45px;
}
textarea {
width: 500px;
}
h1 {
font-size: 1.25em;
}
.code {
position: relative;
}
.code #copy-to-clipboard {
position: absolute;
top: 10;
right: 10;
}
.control {
display: flex;
white-space: nowrap;
padding: .15em;
align-items: center;
}
.control label {
margin-right: auto;
}
.control:nth-child(2n) {
background-color: #2f2f2f;
}
.particle-controls {
padding: 20px;
position: absolute;
left: 20px;
top: 20px;
bottom: 20px;
width: 500px;
background-color: gray;
color: white;
border: none;
border-radius: 10px;
overflow-y: scroll;
}