-
Notifications
You must be signed in to change notification settings - Fork 7
/
style.css
84 lines (70 loc) · 1.29 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
::-webkit-scrollbar {
width:10px;
}
::-webkit-scrollback-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
input[type="range"]::-webkit-slider-runnable-track {
background: #555;
}
.input {
color:white;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.inputCombo {
background-color: #555;
color:white;
}
.collapsible {
background-color: #eee;
color: #444;
cursor:pointer;
padding:18px;
margin-bottom:5px;
width:100%;
border:none;
text-align:left;
outline:none;
font-size:15px;
}
.active, .collapsible:hover {
background-color: #ccc;
}
.sectionContent {
padding: 0 18px;
display: none;
overflow:hidden;
}
.uiPanel {
position: absolute;
width:20%;
height:100%;
transition: left 0.05s;
}
.uiButton {
border-style: none;
background-color:rgba(23, 27, 36, 0.8);
color:white;
position:absolute;
width:40px;
height:100px;
top:10%;
left:100%;
border-radius: 0 10px 10px 0;
}
.uiButton:hover {
border-color:#888;
border-left: 0;
border-style:solid
}
.uiText {
font-size:20px;
text-align:center;
transform:rotate(-90deg) translate(-20px, 0);
}