-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (47 loc) 路 1.29 KB
/
Copy pathstyle.css
File metadata and controls
56 lines (47 loc) 路 1.29 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
.nav-logo {
width: auto;
height: 8rem;
position: relative;
object-fit: contain;
}
#navbar .nav-logo,
#mobile-nav .nav-logo {
width: auto;
height: 3rem;
position: relative;
object-fit: contain;
}
#footer > div > div.flex.flex-col.md\:flex-row.gap-8.justify-between {
align-items: center;
}
#content-container > div {
padding-left: 0;
}
#navbar > div.z-10.mx-auto.relative > div > div > div > div.flex-1.flex.items-center.gap-x-4 > button > span {
max-width: 100%;
}
#navbar {
background-color: transparent;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
}
button[data-testid='consent-banner-reject-button'] {
background-color: rgb(var(--primary-dark)) !important;
color: #fff !important;
border: none !important;
}
button[data-testid='consent-banner-reject-button']:hover {
background-color: rgb(var(--primary-dark)) !important;
opacity: 0.9;
}
/* Accept All -> make it look like the ghost button */
button[data-testid='consent-banner-accept-button'] {
background: transparent !important;
color: #4b5563 !important;
border: none !important;
}
button[data-testid='consent-banner-accept-button']:hover {
background: transparent !important;
color: #111827 !important;
opacity: 1 !important;
}