-
Notifications
You must be signed in to change notification settings - Fork 4
/
background.css
207 lines (176 loc) · 3.8 KB
/
background.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
.--eduscope-mod-html {
width: 350px;
height: auto;
font-family: "Courier New", Courier, monospace;
background-color: #000;
color: #fff;
padding: 0;
margin: 0;
border: 3px #303030 solid;
}
#eduscope-mod-error {
color: #f00;
}
.--eduscope-mod-body {
padding: 0px 20px;
}
.--eduscope-mod-options-container {
font-size: 100%;
}
.--eduscope-mod-option-subtitle {
margin-top: -10px;
font-size: 90%;
color: #0073d6;
}
.--eduscope-mod-disabled {
pointer-events: none;
opacity: 0.5;
}
.--eduscope-mod-option-row {
width: 100%;
display: flex;
}
.--eduscope-mod-link {
color: #004b8c;
}
.--eduscope-mod-link:hover {
color: #0388fc;
}
.--eduscope-button {
display: inline-block;
margin-bottom: 10px;
cursor: pointer;
color: #fff;
background-color: #000;
padding: 5px 10px;
font-size: 13px;
text-align: center;
border: 2px solid #444;
border-radius: 4px;
}
.--eduscope-button:hover {
background-color: #004b8c;
border: 2px solid #0388fc;
}
/* SELECTORS */
.--eduscope-mod-radio-toolbar {
margin: 10px 0px;
}
.--eduscope-mod-radio-toolbar input[type="radio"] {
opacity: 0;
position: fixed;
width: 0;
}
.--eduscope-mod-radio-toolbar label {
display: inline-block;
width: 30px;
margin-bottom: 10px;
background-color: #000;
padding: 5px 7px;
font-size: 13px;
text-align: center;
border: 2px solid #444;
border-radius: 4px;
}
.--eduscope-mod-radio-toolbar-attention-lock label:not(:first-of-type) {
width: 10px;
}
.--eduscope-mod-speed-container label {
width: 20px;
padding: 3px 7px;
font-size: 10px;
border: 1px solid #444;
}
.--eduscope-mod-speed-container input[type="radio"]:focus + label,
.--eduscope-mod-radio-toolbar label:hover {
background-color: #00182e;
}
.--eduscope-mod-speed-container input[type="radio"]:focus + label,
.--eduscope-mod-radio-toolbar input[type="radio"]:focus + label {
border: 2px solid rgb(0, 0, 0);
}
.--eduscope-mod-speed-container input[type="radio"]:focus + label,
.--eduscope-mod-radio-toolbar input[type="radio"]:checked + label {
border: 1px solid #0388fc;
background-color: #004b8c;
}
.--eduscope-mod-speed-container {
display: flex;
margin-top: 10px;
gap: 3px;
}
/* END SELECTOR STYLES*/
/*Dark mode styles*/
.dark-mode {
background-color: #121212 !important;
color: #fff !important;
}
.dark-textarea {
color: #fff !important;
background: #121212 !important;
border: 1px solid #0073d6 !important;
border-radius: 7px;
}
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
background: #303030;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #004b8c;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #0073d6;
}
.--eduscope-mod-slider {
-webkit-appearance: none;
width: 100%;
height: 6px;
border-radius: 5px;
background: #444;
outline: none;
opacity: 1;
-webkit-transition: 0.2s;
transition: opacity 0.2s;
}
.--eduscope-mod-slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 15px;
height: 15px;
border-radius: 50%;
background: #0388fc;
cursor: pointer;
}
.--eduscope-mod-slider::-moz-range-thumb {
width: 15px;
height: 15px;
border-radius: 50%;
background: #0388fc;
cursor: pointer;
}
.--eduscope-mod-speed-value {
font-size: 2rem;
color: #0388fc;
font-weight: bold;
}
.--eduscope-mod-blinking {
width: 10px;
height: 10px;
background: #0388fc;
border-radius: 100%;
margin-top: 2px;
animation: eduscopeModBlinkAnimation 0.5s infinite alternate ease-in-out;
}
@keyframes eduscopeModBlinkAnimation {
from {
opacity: 0;
}
to {
opacity: 1;
}
}