2023-01-15 00:19:35 +01:00
|
|
|
// general
|
|
|
|
@import "variables";
|
2023-01-15 00:24:10 +01:00
|
|
|
@import "main";
|
2023-01-15 00:19:35 +01:00
|
|
|
|
2023-03-05 22:58:27 +01:00
|
|
|
// fonts
|
|
|
|
@import "fonts/playfair";
|
|
|
|
|
2023-01-15 00:19:35 +01:00
|
|
|
// shortcodes
|
|
|
|
@import "shortcodes/verticalposts";
|
|
|
|
|
|
|
|
// partials
|
|
|
|
@import "partials/sidebar";
|
|
|
|
@import "partials/footer";
|
|
|
|
@import "partials/helpers/icons";
|
|
|
|
|
|
|
|
|
2022-11-28 18:33:52 +01:00
|
|
|
#introduction {
|
|
|
|
background: var(--vriish-gradient);
|
2023-03-05 22:58:27 +01:00
|
|
|
font-family: "playfair";
|
|
|
|
font-size: 2rem;
|
|
|
|
height: 100vh;
|
|
|
|
h1 {
|
|
|
|
letter-spacing: 0.5rem;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
letter-spacing: 0.15rem;
|
|
|
|
}
|
|
|
|
&::after {
|
|
|
|
content: "☟";
|
|
|
|
font-size: 4.8rem;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 2rem;
|
|
|
|
animation: 1s ease-in infinite alternate scrollDown;
|
|
|
|
font-family: serif;
|
|
|
|
}
|
|
|
|
@keyframes scrollDown {
|
|
|
|
from { transform: translateY(0); }
|
|
|
|
to { transform: translateY(1rem); }
|
|
|
|
}
|
2022-11-28 18:33:52 +01:00
|
|
|
}
|
|
|
|
|
2022-12-24 14:59:52 +01:00
|
|
|
section {
|
|
|
|
position: relative;
|
|
|
|
h2 {
|
|
|
|
.more{
|
|
|
|
font-size: .75em;
|
|
|
|
font-weight: normal;
|
|
|
|
hyphens: none;
|
|
|
|
&::after {
|
|
|
|
content: "\27F6";
|
|
|
|
margin-left: .25em;
|
|
|
|
transition: margin .5s;
|
|
|
|
}
|
|
|
|
&:hover::after {
|
|
|
|
margin-left: .5em !important;
|
|
|
|
}
|
2022-11-28 18:33:52 +01:00
|
|
|
}
|
2022-12-24 14:59:52 +01:00
|
|
|
&:hover .more::after {
|
|
|
|
margin-left: .35em;
|
2022-11-28 18:33:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|