-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
41 lines (38 loc) · 833 Bytes
/
styles.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
.sponsored-content-dimmed {
position: relative !important;
pointer-events: auto !important;
}
.sponsored-content-dimmed::before {
content: "Sponsored Content";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.7);
z-index: 1000;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 14px;
text-align: center;
cursor: pointer;
opacity: 1;
transition: opacity 0.3s ease;
}
.sponsored-content-dimmed:hover::before {
opacity: 0.3;
}
.sponsored-badge {
position: absolute;
top: 5px;
right: 5px;
background-color: #ff9900;
color: black;
padding: 2px 6px;
border-radius: 3px;
font-size: 12px;
z-index: 1001;
pointer-events: none;
}