-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
41 lines (39 loc) · 847 Bytes
/
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
:root {
--blur-effect: blur(1px);
--blur-timing: 1s;
}
.blur .embedWrapper-lXpS3L img,
.blur .embedWrapper-lXpS3L video {
transition: var(--blur-timing) !important;
filter: var(--blur-effect) !important;
}
.blur .embedWrapper-lXpS3L img:hover,
.blur .embedWrapper-lXpS3L video:hover {
transition: var(--blur-timing) !important;
filter: none !important;
}
.nsfw-text {
background-color: rgb(240, 71, 71);
border-radius: 3px;
padding: 0 6px;
white-space: nowrap;
text-overflow: ellipsis;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 8px;
min-width: 16px;
min-height: 16px;
font-size: 12px;
line-height: 16px;
font-weight: 600;
color: #fff;
text-align: center;
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
}
.nsfw-badge {
position: relative;
margin-left: 4px;
line-height: 0;
}