website/assets/scss/partials/footer.scss

26 lines
439 B
SCSS
Raw Normal View History

2022-11-28 18:33:52 +01:00
footer {
2023-03-09 20:47:10 +01:00
color: var(--text-accent-150);
2022-11-28 18:33:52 +01:00
grid-area: footer;
2023-01-06 21:23:45 +01:00
margin: 1em auto;
text-align: center;
2023-03-05 17:54:17 +01:00
font-size: 1rem;
2023-03-09 22:00:22 +01:00
p {
2023-01-06 21:23:45 +01:00
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);
}
}
}
2022-11-28 18:33:52 +01:00
}
}