-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
136 lines (130 loc) · 2.75 KB
/
stylesheet.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
body {
padding: 0px;
margin: 0px;
background: #D8D8C0;
font-size: 16px;
}
h1 {
text-align: center;
width: 100%;
background: #FF4040;
color: #FFCC00;
margin: auto;
padding: 1%;
font-family: "Helvetica", Verdana, Arial, sans-serif;
font-size: 5em;
text-shadow: 5px 5px #FF9900;
}
@media (max-width: 336px) {
input[type="range"]#slider {
padding-top: 16.5em !important;
}
}
div#howlit {
height: 100%;
width: 100%;
}
div#litometer {
}
input[type="range"]#slider {
display: block;
position: fixed;
padding-top: 8.25em;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-webkit-appearance: none;
width: 70%;
margin: 0px auto;
background: none;
}
input[type="range"]#slider:focus {
outline: none;
}
input[type="range"]#slider::-webkit-slider-runnable-track {
width: 100%;
height: 0.5em;
cursor: pointer;
background: #FFFFFF;
border-radius: 0.5em;
border: 0.6px solid #a8a8a8;
}
input[type="range"]#slider::-webkit-slider-thumb {
margin-top: -2.25em;
height: 4.5em;
width: 4.5em;
border: none;
opacity: 1;
background: transparent url("fire-small.png") no-repeat scroll 0% 0%
/contain content-box;
-webkit-appearance: none;
cursor: pointer;
}
input[type="range"]#slider:focus::-webkit-slider-runnable-track {
background: #FFFFFF;
}
input[type="range"]#slider::-moz-range-track {
width: 100%;
height: 0.5em;
cursor: pointer;
background: #FFFFFF;
border-radius: 0.5em;
border: 0.6px solid #a8a8a8;
}
input[type="range"]#slider::-moz-range-thumb {
height: 4.5em;
width: 4.5em;
padding-bottom: 1em;
border: none;
opacity: 1;
background: transparent url("fire-small.png") no-repeat scroll 0% 0%
/contain content-box;
cursor: pointer;
}
input[type="range"]#slider::-ms-track {
width: 100%;
height: 0.5em;
cursor: pointer;
background: #FFFFFF;
border-radius: 0.5em;
border: 0.6px solid #a8a8a8;
}
input[type="range"]#slider::-ms-thumb {
height: 4.5em;
width: 4.5em;
padding-bottom: 1em;
border: none;
opacity: 1;
background: transparent url("fire-small.png") no-repeat scroll 0% 0%
/contain content-box;
cursor: pointer;
}
div #play {
position: relative;
}
.btn {
position: fixed;
padding: none;
margin: none;
top: 75%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
text-align: center;
width: auto;
padding: 0.5em;
background: #81b71a;
border: solid 1px #a8a8a8;
border-radius: 30px;
font-size: 2em;
font-family: "Helvetica", Verdana, Arial, sans-serif;
font-weight: bold;
color: #ffffff;
text-shadow: 1px 1px 1px #a8a8a8;
}
.btn:hover {
cursor: pointer;
}