mirror of
https://github.com/Alexander-D-Karpov/webring.git
synced 2026-03-16 22:07:41 +03:00
53 lines
770 B
CSS
53 lines
770 B
CSS
@import "/static/reset.css";
|
|
@import "/static/theme.css";
|
|
|
|
body {
|
|
padding: 1rem;
|
|
}
|
|
|
|
header, main, footer {
|
|
padding: 1rem 1.5rem;
|
|
width: 100%;
|
|
max-width: 48rem;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
header {
|
|
background: var(--color-primary-950);
|
|
color: var(--color-primary-100);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
footer {
|
|
color: var(--color-gray-400);
|
|
padding-top: 0;
|
|
}
|
|
|
|
.join-link {
|
|
color: var(--color-gray-400);
|
|
}
|
|
|
|
ul {
|
|
flex-direction: column;
|
|
display: flex;
|
|
gap: 1.25rem;
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
li {
|
|
display: flex;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
}
|
|
|
|
li img {
|
|
width: 20px;
|
|
aspect-ratio: 1 / 1;
|
|
}
|
|
|
|
li .favicon-fallback {
|
|
width: 20px;
|
|
height: 20px;
|
|
background: var(--color-gray-900);
|
|
border-radius: 2px;
|
|
} |