banner & styling

This commit is contained in:
2022-09-19 11:34:42 -04:00
parent bd9ef9214e
commit a8e4b4371b
31 changed files with 265 additions and 58 deletions

View File

@@ -17,6 +17,20 @@ $LegioXXX-theme: mat.define-dark-theme((
@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%;
}
@@ -25,14 +39,16 @@ body {
color: #fff;
font-family: Roboto, sans-serif;
margin: 0;
overflow: hidden;
}
* { scroll-behavior: smooth !important; }
a { color: #ff0000; }
a:visited:hover, a:hover { color: #aa0000; }
a:visited { color: #ff5555; }
a, a:visited {
text-decoration: none;
color: rgba(255, 255, 255, 0.6);
}
a:hover, a:visited:hover { color: #b10000; }
.fill {
height: 0;
min-height: calc(100vh - 64px);
}