-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (95 loc) · 1.79 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
body {
margin: 0;
background-color: white;
font-size: small !important;
}
canvas {
width: 100%;
height: 100%;
display: block;
background-color: white;
}
.modal {
display: none;
position: fixed;
z-index: 1000;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: rgba(255, 255, 255, 1) url('https://art.pixilart.com/b05178369bdc7fc.gif') 50% 50% no-repeat;
background-size: 20% 20%;
align-content: center;
}
body.loading .modal {
overflow: hidden;
display: block;
}
.status-panel {
margin: 0;
background: rgba(255, 255, 255, 0.4);
z-index: 10;
position: fixed;
top: 2em;
left: 2em;
padding: 1em;
border-radius: 0.5em;
min-width: 250px;
}
.settings-panel {
margin: 0;
background: rgba(255, 255, 255, 0.4);
z-index: 10;
position: fixed;
top: 2em;
right: 2em;
padding: 1em;
border-radius: 0.5em;
min-width: 425px;
}
.lights-panel {
margin: 0;
background: rgba(255, 255, 255, 0.4);
z-index: 10;
position: fixed;
bottom: 2em;
left: 2em;
padding: 1em;
border-radius: 0.5em;
min-width: 250px;
}
.control-panel {
margin: 0;
background: rgba(255, 255, 255, 0.4);
z-index: 10;
position: fixed;
bottom: 2em;
right: 2em;
padding: 1em;
border-radius: 0.5em;
min-width: 250px;
}
.element {
background: rgba(50, 50, 50, 0.4);
border-radius: 0.3em;
}
.color-select {
width: 100%;
border: none;
box-shadow: none;
background: transparent;
}
.row {
padding: 0 1em 0 1em;
}
.row label {
margin-bottom: 0;
min-width: 20px;
font-size: 0.8em;
}
.row input[type="range"] {
width: calc(100% - 20px - 0.5em);
margin-left: 0.5em;
display: inline-block;
float: right;
}