112 lines
1.9 KiB
SCSS
112 lines
1.9 KiB
SCSS
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap');
|
|
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
|
|
$accent-color: red;
|
|
|
|
body {
|
|
background-color: rgb(0, 0, 0);
|
|
color: rgb(255, 255, 255);
|
|
//font-size: 3vw;
|
|
}
|
|
|
|
.light {
|
|
color: black !important;
|
|
background: white !important;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
.title {
|
|
//font-family: 'Source Sans Pro', sans-serif !important;
|
|
font-size: 5vh;
|
|
margin: 0;
|
|
//bottom: 5px;
|
|
// height: 1%;
|
|
text-align: center;
|
|
padding: 30px 0 0 0;
|
|
}
|
|
.toggle {
|
|
cursor: grab;
|
|
}
|
|
.subtitle {
|
|
//font-family: 'Source Sans Pro', sans-serif !important;
|
|
font-size: 3vh;
|
|
bottom: 50px;
|
|
//height: 1%;
|
|
text-align: center;
|
|
}
|
|
sub {
|
|
font-size: 1vh;
|
|
}
|
|
|
|
.center {
|
|
//height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 90px 0 0 0;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|
|
|
|
body.light a {
|
|
color: black;
|
|
}
|
|
|
|
#box {
|
|
position: absolute;
|
|
z-index: 999;
|
|
border: 25px solid white;
|
|
box-sizing: border-box;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
pointer-events: none;
|
|
transition: border-color 0.5s ease-in-out;
|
|
}
|
|
|
|
body.light #box {
|
|
position: absolute;
|
|
z-index: 999;
|
|
border: 25px solid black;
|
|
box-sizing: border-box;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
pointer-events: none;
|
|
transition: border-color 0.5s ease-in-out;
|
|
}
|
|
|
|
$accents: ("monty": #ff6d62, "ryden": #a8fd77, "thaldrin": #ff995d);
|
|
$links: ('monty', 'ryden', 'thaldrin');
|
|
$time: 2s;
|
|
@each $link, $color in $accents {
|
|
.#{$link}:hover {
|
|
color: $color;
|
|
|
|
& ~ #box {
|
|
border-color: $color;
|
|
}
|
|
}
|
|
.#{$link}::selection {
|
|
color: white;
|
|
background-color: $color;
|
|
}
|
|
body.light .#{$link}::selection {
|
|
//color: $color + 9a;
|
|
color: black;
|
|
background-color: $color + 26;
|
|
}
|
|
}
|
|
@each $link in $links {
|
|
.#{$link} {
|
|
font-size: 6vh;
|
|
}
|
|
}
|