-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
69 lines (58 loc) · 1.63 KB
/
content.css
File metadata and controls
69 lines (58 loc) · 1.63 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
/* content.css - Styling voor IP-weergave */
.website-ip-display {
position: fixed !important;
bottom: 10px !important;
right: 10px !important;
display: flex !important;
align-items: center !important;
background-color: rgba(0, 0, 0, 0.7) !important;
color: #ffffff !important;
padding: 4px 8px !important;
border-radius: 4px !important;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, monospace !important;
font-size: 11px !important;
z-index: 999999 !important;
text-decoration: none !important;
transition: all 0.3s ease !important;
user-select: text !important;
-webkit-user-select: text !important;
-moz-user-select: text !important;
line-height: 1.2 !important;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
opacity: 0.8 !important;
backdrop-filter: blur(5px) !important;
-webkit-backdrop-filter: blur(5px) !important;
}
.ip-link {
color: inherit !important;
text-decoration: none !important;
cursor: pointer !important;
}
.arrow {
cursor: pointer !important;
margin: 0 4px !important;
}
.arrow.hidden {
display: none !important;
}
.website-ip-display.moved-left {
right: auto !important;
left: 10px !important;
}
/* Zorg dat het element niet interfereert met pagina-interacties */
.website-ip-display {
pointer-events: auto !important;
}
/* Verberg op print */
@media print {
.website-ip-display {
display: none !important;
}
}
/* Extra styling voor donkere thema's */
@media (prefers-color-scheme: dark) {
.website-ip-display {
background-color: rgba(255, 255, 255, 0.1) !important;
border: 1px solid rgba(255, 255, 255, 0.2) !important;
}
}