-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathindex.css
More file actions
89 lines (73 loc) · 1.47 KB
/
Copy pathindex.css
File metadata and controls
89 lines (73 loc) · 1.47 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
@import 'tailwindcss';
@import './color-vars.css';
@import '@tetherto/pearpass-lib-ui-kit/tailwind.css';
@font-face {
font-family: 'Humble Nostalgia';
src: url('/assets/fonts/humbleNostalgia/HumbleNostalgia.otf') format('OpenType');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 100 900;
font-display: swap;
src: url('/assets/fonts/inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
}
@theme {
--font-humble: 'Humble Nostalgia';
--font-inter: 'Inter';
}
@layer base {
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: unset;
font-weight: unset;
}
}
* {
box-sizing: border-box;
}
html,
body {
background: var(--color-background);
overscroll-behavior: none;
}
[data-theme] {
display: contents !important;
}
*::-webkit-scrollbar {
display: none;
}
.custom-slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
height: 16px;
width: 16px;
border-radius: 50%;
background-color: #BADE5B;
/* Replace with actual color (e.g., colors.primary400.mode1) */
border: none;
cursor: pointer;
&:hover {
box-shadow: 0 0 0 4px #BADE5B66
}
&:active::-webkit-slider-thumb {
box-shadow: 0 0 0 4px #BADE5B66;
}
&:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 4px #BADE5B66;
}
}
.custom-slider::-moz-range-thumb {
height: 16px;
width: 16px;
border-radius: 50%;
background-color: #007aff;
border: none;
cursor: pointer;
}