feat: update footer attribution
This commit is contained in:
parent
55f9174380
commit
deb29de533
1 changed files with 21 additions and 16 deletions
|
@ -31,31 +31,36 @@ const year = new Date().getFullYear()
|
||||||
}
|
}
|
||||||
</ul>
|
</ul>
|
||||||
<p>
|
<p>
|
||||||
© 2022-{year}
|
Copyright © 2022-{year}
|
||||||
<a href="/">Ayo Ayco</a>. This website <a
|
<a href="/">Ayo Ayco</a>, but I don't actually know what copyright means, I
|
||||||
href="https://ayos.blog/stopped-tracking-on-my-sites"
|
just copied how others do their footer. It probably doesn't matter? This
|
||||||
|
website <a href="https://ayos.blog/stopped-tracking-on-my-sites"
|
||||||
>does not track users</a
|
>does not track users</a
|
||||||
>. See the <a href="https://sr.ht/~ayoayco/personal-site">source code</a>.
|
>. See the <a href="https://sr.ht/~ayoayco/personal-site">source code</a>.
|
||||||
</p>
|
</p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
a {
|
|
||||||
color: var(--text-color-dark);
|
|
||||||
&:hover {
|
|
||||||
color: var(--color-brand-blue-5);
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
color: var(--text-color-light);
|
|
||||||
&:hover {
|
|
||||||
color: var(--color-brand-complement);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
footer {
|
footer {
|
||||||
margin-top: 2em;
|
margin-top: 2em;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
p {
|
||||||
|
font-size: var(--font-size-sm);
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: var(--text-color-dark);
|
||||||
|
&:hover {
|
||||||
|
color: var(--color-brand-blue-5);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
color: var(--text-color-light);
|
||||||
|
&:hover {
|
||||||
|
color: var(--color-brand-complement);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
|
Loading…
Reference in a new issue