finish sk restructure, a11y and optimisations

This commit is contained in:
ari melody 2024-06-29 14:48:34 +01:00
parent 9ef27fd2a2
commit 3ae05b3f9f
Signed by: ari
GPG key ID: CF99829C92678188
61 changed files with 416 additions and 429 deletions

View file

@ -1,4 +1,4 @@
@import url("/font/inter/inter.css");
@import url("../font/inter/inter.css");
:root {
--bg-1000: #fff6de;
@ -40,6 +40,32 @@ body {
box-sizing: border-box;
}
a {
color: var(--accent);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#spacesocial-app {
margin: auto 0;
padding: 0 16px;
display: flex;
flex-direction: row;
justify-content: center;
gap: 16px;
}
header, #widgets {
width: 300px;
}
main {
width: 732px;
}
.throb {
animation: .25s throb alternate infinite ease-in;
}