1
0
Fork 0
mirror of https://github.com/kou029w/quot.git synced 2025-01-19 08:28:09 +00:00
quot/app/views/app.css

45 lines
626 B
CSS
Raw Normal View History

2022-08-24 17:43:32 +09:00
:root {
2022-09-07 20:46:43 +09:00
font-size: 14px;
--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);
2022-08-24 17:43:32 +09:00
}
body {
2022-09-07 20:46:43 +09:00
padding-inline: 0.75rem;
2022-08-24 17:43:32 +09:00
max-inline-size: 80rem;
}
2022-08-23 09:49:34 +09:00
header {
2022-09-07 20:46:43 +09:00
padding-block: 1.25rem;
margin-bottom: 0.75rem;
2022-08-23 09:49:34 +09:00
display: flex;
align-items: center;
2022-08-24 12:18:00 +09:00
justify-content: space-evenly;
2022-08-23 09:49:34 +09:00
}
2022-08-31 13:00:45 +09:00
header h1 {
margin: 0;
2022-09-07 20:46:43 +09:00
font-size: 1.85rem;
2022-08-31 13:00:45 +09:00
}
2022-09-07 17:04:39 +09:00
header h1 > :is(a, a:hover) {
color: var(--nc-ac-1);
}
2022-08-31 13:00:45 +09:00
header nav > * {
2022-09-07 22:54:27 +09:00
margin: 0.75rem;
2022-09-07 20:46:43 +09:00
font-size: 1.25rem;
2022-08-31 13:00:45 +09:00
}
2022-08-23 09:49:34 +09:00
a[href^="/"] {
text-decoration: none;
}
2022-08-24 13:31:27 +09:00
main * {
line-height: 2;
}