291st/src/styles.scss

58 lines
1.1 KiB
SCSS
Raw Normal View History

2022-09-20 13:57:30 -04:00
@use '@angular/material' as mat;
@include mat.core();
// hue. Available color palettes: https://material.io/design/color/
2023-07-27 13:04:10 -04:00
$JTF-primary: mat.define-palette(mat.$red-palette, 900);
$JTF-accent: mat.define-palette(mat.$indigo-palette, 900);
$JTF-warn: mat.define-palette(mat.$orange-palette, 500);
$JTF-theme: mat.define-dark-theme((
2022-09-20 13:57:30 -04:00
color: (
2023-07-27 13:04:10 -04:00
primary: $JTF-primary,
accent: $JTF-accent,
warn: $JTF-warn,
2022-09-20 13:57:30 -04:00
)
));
2023-07-27 13:04:10 -04:00
@include mat.all-component-themes($JTF-theme);
2022-09-20 13:57:30 -04:00
@import '~bootstrap/dist/css/bootstrap-utilities.min.css';
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar {
width: 10px;
background: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.6);
&:hover { background: rgba(255, 255, 255, 0.8); }
}
html, body {
height: 100%;
}
body {
background: #000;
color: #fff;
font-family: Roboto, sans-serif;
margin: 0;
}
a, a:visited {
text-decoration: none;
2023-07-27 13:04:10 -04:00
color: #3c0000;
2022-09-20 13:57:30 -04:00
}
2023-07-27 13:04:10 -04:00
a:hover, a:visited:hover { color: #550000; }
2022-09-20 13:57:30 -04:00
.fill {
height: 0;
min-height: calc(100vh - 64px);
}
2023-07-27 13:04:10 -04:00
.stencil {
font-family: Saira Stencil One !important;
}