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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
@import 'tailwindcss';
@theme {
--font-sans: 'Adwaita Sans', Inter, system-ui, -apple-system,
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
'Open Sans', 'Helvetica Neue', sans-serif;
--font-sbb-typo: SBB, 'Helvetica Neue', Helvetica, Inter, var(--font-sans),
system-ui, sans-serif;
}
@custom-variant dark (&:where(.dark, .dark *));
@keyframes loadingbar {
0% {
width: 0;
left: 0;
}
50% {
width: 100%;
left: 0;
}
100% {
width: 0;
left: 100%;
}
}
html {
font-family: var(--font-sbb-typo);
@apply dark:scheme-dark;
}
html:has(.no-scroll-body),
body:has(.no-scroll-body) {
overflow-y: hidden;
}
@keyframes shimmer {
0% {
background-position: calc(-1 * var(--shimmer-w, 1000px)) 0;
}
100% {
background-position: var(--shimmer-w, 1000px) 0;
}
}
.skeleton-shimmer {
animation: shimmer 2s infinite linear;
background-size: var(--shimmer-w, 1000px) 100%;
@apply not-dark:bg-[linear-gradient(to_right,_#f6f7f8_4%,_#edeef1_25%,_#f6f7f8_36%)] bg-[linear-gradient(to_right,_#edeef100_4%,_#edeef110_25%,_#edeef100_36%)];
}
@font-face {
font-family: 'SBB Condensed';
font-display: swap;
font-weight: 700;
font-style: normal;
src: url('/fonts/SBB-Condensed-Heavy.woff2') format(woff2),
url('/fonts/SBB-Condensed-Heavy.ttf') format(opentype),
local('SBB Condensed');
}
@font-face {
font-family: 'SBB Condensed';
font-display: swap;
font-weight: 600;
font-style: normal;
src: url('/fonts/SBB-Condensed-Bold.woff2') format(woff2),
url('/fonts/SBB-Condensed-Bold.ttf') format(opentype),
local('SBB Condensed');
}
@font-face {
font-family: SBB;
font-display: swap;
font-weight: 600;
font-style: normal;
src: url('/fonts/SBB-Bold.woff2') format(woff2),
url('/fonts/SBB-Bold.ttf') format(opentype), local('SBB');
}
@font-face {
font-family: SBB;
font-display: swap;
font-weight: 400;
font-style: normal;
src: url('/fonts/SBB-Roman.woff2') format(woff2),
url('/fonts/SBB-Roman.ttf') format(opentype), local('SBB');
}
@font-face {
font-family: SBB;
font-display: swap;
font-weight: 400;
font-style: italic;
src: url('/fonts/SBB-Italic.woff2') format(woff2),
url('/fonts/SBB-Italic.ttf') format(opentype), local('SBB');
}
@font-face {
font-family: SBB;
font-display: swap;
font-weight: 300;
font-style: normal;
src: url('/fonts/SBB-Light.woff2') format(woff2),
url('/fonts/SBB-Light.ttf') format(opentype), local('SBB');
}
@font-face {
font-family: SBB;
font-display: swap;
font-weight: 200;
font-style: normal;
src: url('/fonts/SBB-Thin.woff2') format(woff2),
url('/fonts/SBB-Thin.ttf') format(opentype), local('SBB');
}
@font-face {
font-family: SBB;
font-display: swap;
font-weight: 100;
font-style: normal;
src: url('/fonts/SBB-UltraLight.woff2') format(woff2),
url('/fonts/SBB-UltraLight.ttf') format(opentype), local('SBB');
}
@font-face {
font-family: 'Adwaita Sans';
font-display: swap;
font-weight: 100 900;
font-style: normal;
src: url('/fonts/AdwaitaSans-Regular.woff2') format(woff2),
url('/fonts/AdwaitaSans-Regular.ttf') format(opentype),
local('Adwaita Sans');
}
@font-face {
font-family: 'Adwaita Sans';
font-display: swap;
font-weight: 100 900;
font-style: italic;
src: url('/fonts/AdwaitaSans-Italic.woff2') format(woff2),
url('/fonts/AdwaitaSans-Italic.ttf') format(opentype), local('Adwaita Sans');
}
|