-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
214 lines (183 loc) · 4.32 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/************************************************
*---------------- GLOBAL STYLES ----------------*
************************************************/
html {
font-family: 'Cambria';
font-size: 2vh;
text-align: center;
}
body {
color: #E1E1E1;
background: repeating-linear-gradient(
45deg,
#1E1E1E,
#1E1E1E 25px,
#282828 25px,
#282828 50px
) fixed;
}
hr {
border-style: groove;
}
/************************************************
*--------------- HEADER / FOOTER ---------------*
************************************************/
header p {
font-size: 2.5vh;
margin-bottom: 0;
}
header p:first-child:before, header p:first-child:after {
content: ' ';
width: 4.5em;
height: 1px;
display: inline-block;
border-bottom: 1px solid #888;
position: relative;
top: -0.35em;
margin: 0 .5em;
}
header div {
font-size: 10vh;
text-shadow: 2px 2px #B7BD9B;
color: #F5F5F5;
}
footer div {
font-family: 'Open Sans Light';
font-size: 1.5vh;
}
footer button {
background-color: #323232;
border: none;
border-radius: 4px;
font-size: 1.5vh;
color: #E1E1E1;
padding: 0.75vh 10px;
margin-top: 2vh;
margin-bottom: 1vh;
cursor: pointer;
}
footer p {
display: inline-block;
opacity: 0.5;
}
footer a {
opacity: 0.75;
color: #B7BD9B;
}
/************************************************
*------------------- CONTENT -------------------*
************************************************/
#canvas {
background-color: #191919;
border-color: #282828;
border-style: solid;
border-width: 1px;
}
#controls {
width: 60vh;
margin: auto;
}
.right, form {
font-family: 'Open Sans Light';
}
input:focus {
outline: none;
}
input[type=radio] {
height: 1.45vh;
}
.right { float: right; }
.left { float: left; }
.row { display: flex; }
.column { flex: 50%; }
/************************************************
*------------------- SLIDERS -------------------*
************************************************/
.sliderStyle {
border-radius: 5px;
height: 2.5vh;
width: 90%;
margin-top: 0.75vh;
margin-bottom: 0.75vh;
padding-left: 5%;
padding-right: 5%;
}
#vapeColorSliderStyle {
/* In order: gold, cyan, grey, white, black, red, orange, blue, burgundy */
background: linear-gradient(to right,
#FBE5D2 00%, #FBE5D2 11%,
#55FEF2 11%, #55FEF2 22%,
#7D7D7D 22%, #7D7D7D 33%,
#FEFEFE 33%, #FEFEFE 44%,
#212322 44%, #212322 55%,
#FD564E 55%, #FD564E 66%,
#FCA53D 66%, #FCA53D 77%,
#0E5DEF 77%, #0E5DEF 88%,
#BA3237 88%, #BA3237 99%);
}
#woodColorSliderStyle {
/* In order: none, sun yellow, azo orange, permanent cyan, permanent red violet, permanent blue violet, permanent green, marine blue, sap green, oxide black */
background: linear-gradient(to right,
#FFFFFF 0%, #FFFFFF 10%,
#FFC01B 10%, #FFC01B 20%,
#FF8003 20%, #FF8003 30%,
#06B4F5 30%, #06B4F5 40%,
#D93D64 40%, #D93D64 50%,
#551865 50%, #551865 60%,
#16A773 60%, #16A773 70%,
#13435C 70%, #13435C 80%,
#365B3B 80%, #365B3B 90%,
#252525 90%, #252525 100%);
}
input[type=range] {
-webkit-appearance: none;
background: transparent;
width: 100%;
height: 100%;
margin: 0;
cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
background-color: #E9E9E9;
border: 1px solid #CECECE;
height: 3.5vh;
width: 10px;
}
input[type=range]::-moz-range-track {
-webkit-appearance: none;
background: transparent;
width: 100%;
height: 100%;
margin: 0;
cursor: pointer;
}
input[type=range]::-moz-range-thumb {
-webkit-appearance: none;
background-color: #E9E9E9;
border: 1px solid #CECECE;
height: 3.5vh;
width: 10px;
}
input[type=range]::-moz-focus-outer {
border: none;
}
input[type=range]::-ms-fill-lower {
background: transparent;
border: none;
}
input[type=range]::-ms-fill-upper {
background: transparent;
border: none;
}
input[type=range]::-ms-track {
background: transparent;
color: transparent;
border: none;
width: 100%;
cursor: pointer;
}
input[type=range]::-ms-thumb {
background: transparent;
border: none;
}