billros.si/style/style.scss

109 lines
1.9 KiB
SCSS
Raw Normal View History

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-16 20:23:07 -04:00
$font-exo-2: 'Exo 2', 'sans-serif';
2022-07-14 06:45:27 -04:00
2022-07-14 22:22:28 -04:00
:root {
--background-color: #76BA99;
--logo-color: #CED89E;
--logo-shadow-color: #ADCF9F;
}
2022-07-14 06:45:27 -04:00
body {
margin: 0px;
2022-07-14 22:22:28 -04:00
background-color: var(--background-color);
2022-07-14 06:45:27 -04:00
color: white;
2022-07-16 20:23:07 -04:00
font-family: $font-exo-2;
font-size: 15pt;
2022-07-14 06:45:27 -04:00
}
header {
display: flex;
justify-content: space-between;
padding: 20px 2%;
2022-07-16 20:23:07 -04:00
h1 {
margin-top: 0px;
}
2022-07-14 06:45:27 -04:00
}
.logo {
font-family: $font-edu-vic;
font-size: 36pt;
2022-07-14 22:22:28 -04:00
color: var(--logo-color);
filter: drop-shadow(3px 4px 0px var(--logo-shadow-color));
2022-07-14 06:45:27 -04:00
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 {
2022-07-14 22:22:28 -04:00
color: var(--logo-shadow-color);
2022-07-14 18:58:57 -04:00
font-size: 24pt;
padding-left: 12pt;
text-decoration: none;
}
2022-07-16 20:23:07 -04:00
a:hover {
color: var(--logo-color);
filter: drop-shadow(1px 1px 0px var(--logo-shadow-color));
animation-name: light-up;
animation-duration: 0.5s;
}
2022-07-14 06:45:27 -04:00
}
2022-07-14 22:22:28 -04:00
li:hover {
color: var(--logo-color);
filter: drop-shadow(1px 1px 0px var(--logo-shadow-color));
animation-name: light-up;
animation-duration: 0.5s;
}
}
ul.season {
color: var(--logo-shadow-color);
padding-left: 0px;
font-size: 30pt;
cursor: pointer;
2022-07-14 06:45:27 -04:00
}
}
2022-07-16 20:23:07 -04:00
main {
margin: 0px 25%;
}
@media (max-width: 720px) {
main {
margin: 0px 5%;
}
.hide-small {
display: none;
}
}
section {
margin-bottom: 35px;
display: flex;
flex-direction: column;
h2 {
align-self: center;
font-size: 30pt;
margin-bottom: 0px;
}
}
a {
color: var(--logo-color);
}
2022-07-14 18:58:57 -04:00
@keyframes light-up {
0% {
2022-07-14 22:22:28 -04:00
color: var(--logo-shadow-color);
2022-07-14 18:58:57 -04:00
}
100% {
2022-07-14 22:22:28 -04:00
color: var(--logo-color);
2022-07-14 18:58:57 -04:00
}
}