mirror of
https://github.com/kou029w/quot.git
synced 2025-01-19 08:28:09 +00:00
41 lines
537 B
CSS
41 lines
537 B
CSS
:root {
|
|
font-size: 12px;
|
|
--nc-font-sans: sans-serif;
|
|
--nc-font-mono: monospace;
|
|
--nc-lk-1: #1875d1;
|
|
--nc-lk-2: #004a9f;
|
|
--nc-ac-1: #f57f17;
|
|
--nc-ac-tx: var(--nc-tx-1);
|
|
}
|
|
|
|
body {
|
|
padding-inline: 1rem;
|
|
max-inline-size: 80rem;
|
|
}
|
|
|
|
header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
header h1 {
|
|
margin: 0;
|
|
}
|
|
|
|
header h1 > a,
|
|
header h1 > a:hover {
|
|
color: var(--nc-ac-1);
|
|
}
|
|
|
|
header nav > * {
|
|
font-size: 1.55rem;
|
|
}
|
|
|
|
a[href^="/"] {
|
|
text-decoration: none;
|
|
}
|
|
|
|
main * {
|
|
line-height: 2;
|
|
}
|