This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
PolyNotFound/src/styles.scss
2021-11-12 19:42:39 +01:00

31 lines
619 B
SCSS

@import "~@angular/material/prebuilt-themes/indigo-pink.css";
--root {
--dark-color: #f0f0f0;
}
html, body { height: 100%; }
body { margin: 0; }
.lightTheme {
background: url("assets/lightBackground.jpg") no-repeat center center fixed;
font-color: black;
border-color: black;
font-size: small;
}
.darkTheme {
background: url("assets/darkBackground.webp") no-repeat center center fixed;
font-color: white;
border-color: white;
font-size: small;
}
.lightTheme, .darkTheme {
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}