website/assets/scss/partials/footer.scss
2023-03-09 22:00:22 +01:00

26 lines
No EOL
439 B
SCSS

footer {
color: var(--text-accent-150);
grid-area: footer;
margin: 1em auto;
text-align: center;
font-size: 1rem;
p {
margin: .25em;
span {
&:not(:last-child) {
&::after {
content: '·';
padding: .25em;
}
}
a {
color: var(--text-secondary);
text-decoration-color: transparent;
&:hover {
text-decoration: underline;
text-decoration-color: var(--text-secondary);
}
}
}
}
}