-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (48 loc) · 714 Bytes
/
styles.css
File metadata and controls
55 lines (48 loc) · 714 Bytes
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
html {
font-family: 'Roboto', sans-serif;
background: #1a1a1a;
color: #f2f2f2;
}
body {
background: transparent;
}
h1 {
color: goldenrod;
}
input, select {
background: #3a3a3a;
border-style: solid;
border-width: 1px;
border-color: #5a5a5a;
color: #f2f2f2;
padding: 8px;
border-radius: 3px;
}
input[type=color] {
padding: initial !important;
}
button {
cursor: pointer;
background: goldenrod;
color: black;
font-weight: bold;
border: none;
border-radius: 3px;
padding: 8px;
}
hr {
border-color: #3a3a3a;
}
#visualizer {
display: block;
position: fixed;
z-index: -1;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #1a1a1a;
pointer-events: none;
}