improve footer

This commit is contained in:
Vri 🌈 2023-01-06 21:23:45 +01:00
parent e32c729067
commit 3cf6018c1f
Signed by: vrifox
GPG key ID: D40098E5B60B2197
6 changed files with 56 additions and 10 deletions

View file

@ -1,10 +1,25 @@
footer {
background-color: var(--border);
color: var(--text-secondary);
grid-area: footer;
a { color: var(--text-secondary); }
span {
padding: 17.6px 30px;
margin-right: auto;
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);
}
}
}
}
}