billros.si/style/style.scss

62 lines
1.1 KiB
SCSS
Raw Normal View History

// @use 'spring' as *;
@use 'summer' as *;
// @use 'autumn' as *;
// @use 'winter' as *;
2022-07-14 06:45:27 -04:00
$font-edu-vic: 'Edu VIC WA NT Beginner', cursive;
2022-07-14 18:58:57 -04:00
$font-righteous: 'Righteous', cursive;
2022-07-14 06:45:27 -04:00
body {
margin: 0px;
background-color: $color-bg;
color: white;
}
header {
display: flex;
justify-content: space-between;
padding: 20px 2%;
}
.logo {
font-family: $font-edu-vic;
font-size: 36pt;
color: $color-logo;
filter: drop-shadow(3px 4px 0px $color-logo-shadow);
text-decoration: underline dotted;
}
nav {
2022-07-14 18:58:57 -04:00
display: flex;
align-items: center;
font-family: $font-righteous;
2022-07-14 06:45:27 -04:00
ul {
margin: 0%;
li {
display: inline;
2022-07-14 18:58:57 -04:00
list-style: none;
a {
color: $color-logo-shadow;
font-size: 24pt;
padding-left: 12pt;
text-decoration: none;
}
a:hover {
color: $color-logo;
filter: drop-shadow(1px 1px 0px $color-logo-shadow);
animation-name: light-up;
animation-duration: 0.5s;
}
2022-07-14 06:45:27 -04:00
}
}
}
2022-07-14 18:58:57 -04:00
@keyframes light-up {
0% {
color: $color-logo-shadow;
}
100% {
color: $color-logo;
}
}