-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontrol-panel.css
More file actions
123 lines (109 loc) · 2.11 KB
/
control-panel.css
File metadata and controls
123 lines (109 loc) · 2.11 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
#curtain-control-panel {
all: unset;
position: fixed;
right: 20px;
bottom: 20px;
width: 170px;
padding: 15px;
background: #000;
border-radius: 20px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
outline: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
gap: 10px;
color: white;
font-family: Arial, sans-serif;
z-index: 10000;
filter: none !important;
display: none;
opacity: 0;
transition: opacity 0.3s ease;
}
#curtain-control-panel.visible {
display: block;
opacity: 1;
}
#curtain-control-panel-content {
width: 100%;
display: flex;
flex-direction: column;
gap: 10px;
}
#curtain-control-panel h3 {
all: unset;
margin: 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
padding-bottom: 10px;
width: 100%;
display: flex;
align-items: center;
font-family: Arial, sans-serif;
color: white;
}
.curtain-label {
all: unset;
display: flex;
justify-content: flex-start;
align-items: center;
width: 100%;
font-family: Arial, sans-serif;
color: white;
}
.curtain-icon {
margin-left: 10px;
}
.curtain-label input[type="checkbox"] {
margin-right: 10px;
}
.curtain-close-button {
all: unset;
position: absolute;
top: 15px;
right: 15px;
cursor: pointer;
}
.curtain-close-button svg {
width: 16px;
height: 16px;
fill: none;
stroke: #999;
stroke-width: 2;
}
#curtain-control-buttons {
display: flex;
justify-content: space-between;
width: 100%;
}
.curtain-button {
background-color: white;
border: none;
color: black;
padding: 5px 10px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 12px;
border-radius: 5px;
cursor: pointer;
width: 100%;
text-decoration: none;
transition: background-color 0.3s ease, transform 0.3s ease;
}
.curtain-button a {
text-decoration: none;
transition: background-color 0.3s ease, transform 0.3s ease;
color: #000000;
}
a:visited {
text-decoration: none;
color: #000000;
}
.curtain-button:hover {
background-color: #f0f0f0;
}
.no-greyscale {
filter: none !important;
}