-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (75 loc) · 1.35 KB
/
style.css
File metadata and controls
76 lines (75 loc) · 1.35 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
html, body {
min-height: 100%;
}
.layout {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10;
background-color: #000;
}
.column {
position: absolute;
left: 50%;
bottom: 0;
width: 36px;
height: 130px;
transform: translate(-50%,0);
background-color: #fff;
background: linear-gradient(to right, #111111 0%,#555555 27%,#eeeeee 70%,#333333 100%);
}
.column .rhombus-fire {
display: none;
}
.column .rhombus-fire.red,
.column .rhombus-fire.blue {
display: block;
}
.control-panel {
position: absolute;
bottom: 0;
left: 0;
opacity: 0;
transition: opacity 0.2s linear;
}
.control-panel:hover {
opacity: 1;
}
.control-panel label {
font-size: 10px;
color: #6F617C;
text-shadow: 0 1px 0 #fff;
}
.control-panel fieldset {
padding: 5px 16px;
background-color: #c9c9c9;
border: 0 none;
}
.control-panel fieldset input {
position: absolute;
left: -4753px;
}
.bulb {
position: relative;
display: block;
padding-left: 10px;
cursor: pointer;
}
.bulb:before {
content: '';
position: absolute;
top: 50%;
left: 0;
width: 6px;
height: 6px;
border-radius: 50%;
background-color: #1e6600;
transform: translate(0,-50%);
transition: background-color 0.1s linear;
}
input[type="radio"]:checked + .bulb:before {
background-color: #32c900;
box-shadow: 0 0 4px #32c900;
}