2022-09-14 22:07:17 -04:00
|
|
|
@use '@angular/material' as mat;
|
|
|
|
@include mat.core();
|
|
|
|
|
|
|
|
// hue. Available color palettes: https://material.io/design/color/
|
|
|
|
$LegioXXX-primary: mat.define-palette(mat.$red-palette, 900);
|
|
|
|
$LegioXXX-accent: mat.define-palette(mat.$indigo-palette, 900);
|
|
|
|
$LegioXXX-warn: mat.define-palette(mat.$orange-palette, 500);
|
|
|
|
$LegioXXX-theme: mat.define-dark-theme((
|
|
|
|
color: (
|
|
|
|
primary: $LegioXXX-primary,
|
|
|
|
accent: $LegioXXX-accent,
|
|
|
|
warn: $LegioXXX-warn,
|
|
|
|
)
|
|
|
|
));
|
|
|
|
|
|
|
|
@include mat.all-component-themes($LegioXXX-theme);
|
|
|
|
|
|
|
|
@import '~bootstrap/dist/css/bootstrap-utilities.min.css';
|
|
|
|
|
2022-09-19 11:34:42 -04:00
|
|
|
::-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); }
|
|
|
|
}
|
|
|
|
|
2022-09-14 22:07:17 -04:00
|
|
|
html, body {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
background: #000;
|
|
|
|
color: #fff;
|
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
margin: 0;
|
2022-09-19 11:34:42 -04:00
|
|
|
overflow: hidden;
|
2022-09-14 22:07:17 -04:00
|
|
|
}
|
|
|
|
|
2022-09-19 11:34:42 -04:00
|
|
|
a, a:visited {
|
|
|
|
text-decoration: none;
|
|
|
|
color: rgba(255, 255, 255, 0.6);
|
|
|
|
}
|
|
|
|
a:hover, a:visited:hover { color: #b10000; }
|
2022-09-14 22:07:17 -04:00
|
|
|
|
2022-09-24 17:54:51 -04:00
|
|
|
.invert {
|
|
|
|
background: #fff;
|
|
|
|
color: #000;
|
|
|
|
|
|
|
|
a, a:visited {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #b10000;
|
|
|
|
}
|
|
|
|
a:hover, a:visited:hover { color: #cc0000; }
|
|
|
|
}
|
|
|
|
|
2022-09-14 22:07:17 -04:00
|
|
|
.fill {
|
2022-09-19 11:34:42 -04:00
|
|
|
height: 0;
|
2022-09-14 22:07:17 -04:00
|
|
|
min-height: calc(100vh - 64px);
|
|
|
|
}
|
2022-09-24 17:54:51 -04:00
|
|
|
|
|
|
|
.transparent-link {
|
|
|
|
a, a:visited { color: #fff; }
|
|
|
|
a:hover, a:visited:hover { color: rgba(255, 255, 255, 0.8); }
|
|
|
|
}
|