-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
executable file
·54 lines (51 loc) · 1.01 KB
/
styles.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
html, body {
height: 100%;
background-color: rgb(0, 0, 0);
margin: 0;
}
input {
display:block;
}
#sliders {
position: fixed;
top: 0;
left: 0;
background-color: rgba(1,1,1,0.2);
padding:0.3em;
border-bottom-right-radius: 0.3em;
}
input#c {display:inline;}
button {display:inline;}
input#c2{display:inline}
canvas {
width: 100%;
height: 100%;
margin: auto;
padding: 0;
display: block;
position: relative;
}
a.button4{
display:inline-block;
padding:0.1em 0.5em;
margin:0 0.1em 0.1em 0;
border:0.16em solid rgba(255,255,255,0);
border-radius:2em;
box-sizing: border-box;
text-decoration:none;
font-family:'Monaco', monospace;
font-weight:300;
color:#FFFFFF;
text-shadow: 0 0.04em 0.04em rgba(0,0,0,0.35);
text-align:center;
transition: all 0.2s;
}
a.button4:hover{
border-color: rgba(255,255,255,1);
}
@media all and (max-width:30em){
a.button4{
display:block;
margin:0.2em auto;
}
}