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);
|
|
|
|
|
2022-11-03 19:55:11 -04:00
|
|
|
@import "~bootstrap/dist/css/bootstrap.min.css";
|
2022-09-14 22:07:17 -04:00
|
|
|
|
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%;
|
|
|
|
background: #000;
|
|
|
|
color: #fff;
|
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
margin: 0;
|
2022-11-03 19:55:11 -04:00
|
|
|
|
|
|
|
@media print {
|
|
|
|
background: #fff !important;
|
|
|
|
}
|
2022-09-14 22:07:17 -04:00
|
|
|
}
|
|
|
|
|
2022-09-19 11:34:42 -04:00
|
|
|
a, a:visited {
|
2023-11-24 15:52:54 -05:00
|
|
|
color: #b10000;
|
2022-09-19 11:34:42 -04:00
|
|
|
text-decoration: none;
|
2024-01-11 09:55:42 -05:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: #b10000;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2023-11-24 15:52:54 -05:00
|
|
|
}
|
2022-09-14 22:07:17 -04:00
|
|
|
|
2024-01-11 09:55:42 -05:00
|
|
|
.transparent-link {
|
|
|
|
a, a:visited { color: #fff; }
|
|
|
|
a:hover, a:visited:hover { color: rgba(255, 255, 255, 0.8); }
|
|
|
|
}
|
2022-10-26 21:46:25 -04:00
|
|
|
|
2024-01-11 09:55:42 -05:00
|
|
|
.cap-width {
|
2023-11-24 15:52:54 -05:00
|
|
|
max-width: 1200px;
|
2022-10-26 21:46:25 -04:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
2022-09-24 17:54:51 -04:00
|
|
|
.invert {
|
|
|
|
background: #fff;
|
|
|
|
color: #000;
|
|
|
|
|
2022-09-28 08:54:33 -04:00
|
|
|
mat-divider {
|
|
|
|
border-color: rgba(0, 0, 0, 0.4);
|
|
|
|
}
|
2022-09-24 17:54:51 -04:00
|
|
|
}
|
|
|
|
|
2023-11-24 15:52:54 -05:00
|
|
|
ol {
|
|
|
|
list-style-type: upper-roman;
|
|
|
|
}
|