website/assets/footer.scss

25 lines
419 B
SCSS
Raw Normal View History

2022-11-28 18:33:52 +01:00
footer {
color: var(--text-secondary);
grid-area: footer;
2023-01-06 21:23:45 +01:00
margin: 1em auto;
text-align: center;
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);
}
}
}
2022-11-28 18:33:52 +01:00
}
}