-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
72 lines (59 loc) · 942 Bytes
/
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
body {
background-color: #1c2c4c;
text-align: center;
color: #f3f3ff;
max-width: 480px;
margin: auto;
}
a {
color: #f3f3ff;
}
#remix-link {
font-size: 18px;
}
h1 {
font-family: sans-serif
}
p, label, output {
font-size: 18px;
}
#save-image-link {
margin:auto;
}
canvas {
display: block;
height: auto;
width: auto;
max-width: 400px;
max-height: none;
margin: auto;
box-shadow: 0 0 8px 0px black;
}
form#customize-form {
text-align: left;
margin-bottom: 1em;
}
form#customize-form fieldset {
border-radius: 6px
}
form#customize-form input[type="submit"] {
float: right;
font-size: 24px;
}
.input-group {
margin: 15px auto;
width: 300px
}
.input-group .range-label {
display: block;
}
.input-group .range-output {
font-family: monospace;
border: 1px solid white;
border-radius: 5px;
padding: 0.5em;
}
.input-group input[type="range"] {
height: 10px;
width: 200px;
}