-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
41 lines (35 loc) · 790 Bytes
/
styles.css
File metadata and controls
41 lines (35 loc) · 790 Bytes
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
/* The overlay */
#pointer-surface {
filter: invert(100%) hue-rotate(180deg) contrast(80%) brightness(120%) !important;
background-color: transparent;
z-index: 99999999999999999999;
position: fixed;
top: 0;
left: -999px;
overflow: hidden;
}
#pointer-led {
border: solid 1px transparent;
border-radius: 12px;
background-color: #7777;
position: absolute;
}
/* The box highlight style */
.outer-box {
border-color: #222222 !important;
z-index: 99999999999999999999;
opacity: 1.0;
position: fixed;
transition: opacity 4s;
pointer-events: none;
}
.night-mode .outer-box {
border-color: #ffffff !important;
}
.inner-box {
border-color: #FF93AC !important;
position: relative;
}
.night-mode .inner-box {
border-color: rgb(255, 61, 90) !important;
}