website/assets/home.scss
2023-01-06 22:44:54 +01:00

25 lines
No EOL
533 B
SCSS

#introduction {
background: var(--vriish-gradient);
}
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;
}
}
&:hover .more::after {
margin-left: .35em;
}
}
}