-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
143 lines (125 loc) · 2.78 KB
/
Copy pathmain.css
File metadata and controls
143 lines (125 loc) · 2.78 KB
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
/* The threejs canvas container */
#three-container {
position: fixed;
left: 0px;
}
/* The top menu bar */
#top-menu-bar {
position: fixed;
left: 20px;
}
/* Sun options container */
#sun-options-container {
position: fixed;
right: 20px;
top: 60px;
background-color: black;
color: white;
opacity: 50%;
/* text-align: center; */
padding: 10px;
padding-top: 0px;
padding-bottom: 15px;
border-radius: 10px;
}
/* Sun options box title */
#sun-title {
text-align: center;
}
/* Sun options box option row */
.sun-op-row {
padding-bottom: 10px;
}
/* Sun option label */
#sun-options-container .label {
font-size: x-small;
display: inline;
padding-right: 10px;
}
/* Sun option slider */
#sun-options-container .slider {
display: inline;
}
/* The container */
.checkmark-container {
display: inline;
position: relative;
padding-left: 25px;
margin-left: 40px;
margin-bottom: 12px;
cursor: pointer;
font-size: 22px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* Hide the browser's default checkbox */
.checkmark-container input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
/* Create a custom checkbox */
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: #2196F3;
}
/* On play mouse-over, add a dark blue background color */
.checkmark-container:hover input~.checkmark {
background-color: #0086fc;
/*#ccc;*/
}
/* On pause mouse-over, add a dark grey background color */
.checkmark-container:hover input:checked~.checkmark {
background-color: #ccc;
}
/* When the checkbox is checked, add a grey background */
.checkmark-container input:checked~.checkmark {
background-color: #eee;
}
/* Create the play symbol (hidden when checked) */
.checkmark:before {
content: "";
position: absolute;
display: block;
}
/* Create the pause symbol (hidden when not checked) */
.checkmark:after {
content: "";
position: absolute;
display: none;
}
/* Hide the pause symbol when checked */
.checkmark-container input:checked~.checkmark:before {
display: none;
}
/* Show the pause symbol when checked */
.checkmark-container input:checked~.checkmark:after {
display: block;
}
/* Style the pause symbol */
.checkmark-container .checkmark:after {
left: 6px;
top: 6px;
width: 3px;
height: 13px;
border: solid black;
border-width: 0 5px 0 5px;
}
/* Style the play symbol */
.checkmark-container .checkmark:before {
left: 9px;
top: 5px;
width: 0px;
height: 0px;
border-top: 7px solid transparent;
border-left: 10px solid white;
border-bottom: 7px solid transparent;
}