blob: f17e7ea7b2d6c0f9d37f3fe83ac823814e47d09c (
plain)
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
|
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
}
* {
font-family: "Karla", sans-serif;
}
main {
max-width: 1920px;
}
/* Style for the active pagination bullet */
.swiper-pagination-bullet-active {
background-color: white !important; /* Make active bullet white */
}
/* Optional: Style for inactive pagination bullets */
.swiper-pagination-bullet {
background-color: rgba(
255,
255,
255,
0.8
) !important; /* Light gray for inactive bullets */
}
.peer:checked + div .toggle-dot {
transform: translateX(100%);
}
.toggle-dot {
transition: transform 0.1s ease-in-out;
}
|