mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 15:58:38 +01:00
109 lines
1.4 KiB
SCSS
109 lines
1.4 KiB
SCSS
@use './utilities.scss';
|
|
@use './colors.scss';
|
|
|
|
@font-face {
|
|
font-family: "Geist";
|
|
src: url("../fonts/GeistVF.ttf");
|
|
}
|
|
|
|
|
|
.actionable-visits-color-checkbox {
|
|
color: #5655d7;
|
|
}
|
|
|
|
.actionable-sessions-color-checkbox {
|
|
color: #4abde8;
|
|
}
|
|
.actionable-events-color-checkbox {
|
|
color: #fbbf24;
|
|
}
|
|
|
|
.geist {
|
|
font-family: "Geist";
|
|
}
|
|
|
|
|
|
.fas,
|
|
.far,
|
|
.fat {
|
|
font-family: "Font Awesome 6 Pro" !important;
|
|
}
|
|
|
|
.fab {
|
|
font-family: "Font Awesome 6 Brands" !important;
|
|
}
|
|
|
|
.brockmann {
|
|
font-family: "Brockmann" !important;
|
|
}
|
|
|
|
.nunito {
|
|
font-family: "Nunito" !important;
|
|
}
|
|
|
|
.inter {
|
|
font-family: "Inter" !important;
|
|
}
|
|
|
|
.geometric {
|
|
font-family: 'Geometric Sans Serif v1' !important;
|
|
}
|
|
|
|
.manrope {
|
|
font-family: 'Manrope' !important;
|
|
}
|
|
|
|
.lato {
|
|
font-family: 'Lato' !important;
|
|
}
|
|
|
|
.poppins {
|
|
font-family: 'Poppins' !important;
|
|
}
|
|
|
|
.poppins-childs {
|
|
font-family: 'Poppins' !important;
|
|
|
|
* {
|
|
font-family: 'Poppins' !important;
|
|
}
|
|
}
|
|
|
|
|
|
.hide-scrollbars {
|
|
-ms-overflow-style: none;
|
|
/* IE and Edge */
|
|
scrollbar-width: none;
|
|
|
|
/* Firefox */
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
/* Chrome, Safari and Opera */
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.card-shadow {
|
|
box-shadow: 0 0 18px #00000033;
|
|
}
|
|
|
|
progress::-webkit-progress-value {
|
|
transition: all 0.5s ease-in-out;
|
|
}
|
|
|
|
progress::-moz-progress-bar {
|
|
transition: all 0.5s ease-in-out;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
width: 100dvw;
|
|
height: 100dvh;
|
|
overflow: hidden;
|
|
}
|
|
|
|
* {
|
|
font-family: 'Nunito';
|
|
} |