60 lines
1.2 KiB
CSS
60 lines
1.2 KiB
CSS
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap");
|
|
|
|
:root {
|
|
color-scheme: dark;
|
|
}
|
|
|
|
body {
|
|
font-family: "Space Grotesk", sans-serif;
|
|
background-image:
|
|
radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 30%),
|
|
radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 28%);
|
|
}
|
|
|
|
.line-clamp-2,
|
|
.line-clamp-3 {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.line-clamp-2 {
|
|
-webkit-line-clamp: 2;
|
|
}
|
|
|
|
.line-clamp-3 {
|
|
-webkit-line-clamp: 3;
|
|
}
|
|
|
|
.slider-thumb::-webkit-slider-thumb {
|
|
-webkit-appearance: none;
|
|
height: 18px;
|
|
width: 18px;
|
|
border-radius: 9999px;
|
|
border: 2px solid #09090b;
|
|
background: #fafafa;
|
|
cursor: pointer;
|
|
margin-top: -7px;
|
|
}
|
|
|
|
.slider-thumb::-moz-range-thumb {
|
|
height: 18px;
|
|
width: 18px;
|
|
border-radius: 9999px;
|
|
border: 2px solid #09090b;
|
|
background: #fafafa;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.slider-thumb::-webkit-slider-runnable-track {
|
|
height: 4px;
|
|
border-radius: 9999px;
|
|
background: rgba(255, 255, 255, 0.18);
|
|
}
|
|
|
|
.slider-thumb::-moz-range-track {
|
|
height: 4px;
|
|
border-radius: 9999px;
|
|
background: rgba(255, 255, 255, 0.18);
|
|
}
|