aboutsummaryrefslogtreecommitdiff
path: root/static/css/input.css
blob: d40e436e358b65b8bc12958dac301e0a17a29bbb (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
46
47
48
49
50
51
52
53
@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;
  /* box-sizing: border-box; */
}

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;
}

.historySwiper .swiper-slide, .seasonSwiper .swiper-slide {
  height: 12rem !important; /* equivalent to h-48 */
  width: auto !important;
  aspect-ratio: 16 / 9 !important;
}