-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
123 lines (107 loc) · 1.95 KB
/
style.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
body {
margin: 0;
overflow-x: hidden;
}
#instructions {
padding-left: 0;
}
#viewpoint {
height: 100vh;
}
#rotationLabel {
position: absolute;
width: 100px;
height: 20px;
color: black;
bottom: 100px;
left: 50px;
z-index: -1;
}
#sidebar {
border-left: solid thin gainsboro;
border-bottom: solid thin gainsboro;
background-color: ghostwhite;
box-shadow: -.10em .05em .25em .25em gainsboro;
}
.brick {
opacity: 0.5;
}
.selected {
opacity: 1;
}
.margin1 {
margin-top: 1em;
}
.no-padding {
padding: 0;
}
img {
display:block;
margin:auto;
}
h3 {
margin-top: 0.25em;
}
* {
user-select: none;
}
.material-switch > input[type="checkbox"] {
display: none;
}
.material-switch > label {
cursor: pointer;
height: 0px;
position: relative;
width: 40px;
}
.material-switch > label::before {
background: rgb(0, 0, 0);
box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
border-radius: 8px;
content: '';
height: 16px;
margin-top: -8px;
position:absolute;
opacity: 0.3;
transition: all 0.4s ease-in-out;
width: 40px;
}
.material-switch > label::after {
background: rgb(255, 255, 255);
border-radius: 16px;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
content: '';
height: 24px;
left: -4px;
margin-top: -8px;
position: absolute;
top: -4px;
transition: all 0.3s ease-in-out;
width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
background: inherit;
opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label::after {
background: inherit;
left: 20px;
}
ul {
list-style-type: none;
padding: 0;
padding-left: 1em;
/*margin: 0 auto;*/
}
/*div .progressBar {*/
/* width: 200px;*/
/* height: 20px;*/
/* background: #000;*/
/* border: 2px solid #000;*/
/*}*/
/*div > div .progressBar {*/
/* width: 200px;*/
/* height: 20px;*/
/* background: red;*/
/* border: none;*/
/*}*/