jonnybarnes.uk/resources/css/layout.css

55 lines
758 B
CSS
Raw Normal View History

2025-12-11 17:17:01 +00:00
@layer base {
:root {
--border-radius: 8px;
}
2023-02-08 19:36:24 +00:00
2025-12-11 17:17:01 +00:00
html {
font-size: 125%;
}
2025-12-11 17:17:01 +00:00
body {
display: grid;
2025-12-11 19:58:17 +00:00
grid-template-columns: 1fr min(80ch, 80vw) 1fr;
2025-12-11 17:17:01 +00:00
grid-template-rows: min-content 1fr min-content;
padding-inline: 4vw;
> header {
grid-column: 1/-1;
}
> main {
grid-column: 2/3;
}
> footer {
grid-column: 1/-1;
margin-block-start: 2ex;
search form {
display: flex;
flex-direction: row;
align-items: center;
gap: 1ex;
2025-12-11 19:58:17 +00:00
input {
min-width: 0;
}
2025-12-11 17:17:01 +00:00
}
}
}
2023-02-08 19:36:24 +00:00
2025-12-11 17:17:01 +00:00
.h-feed {
display: flex;
2025-12-11 17:17:01 +00:00
flex-direction: column;
gap: 2ex;
}
2023-02-08 19:36:24 +00:00
}
@layer components {
.h-entry {
pre {
padding: 1rem;
}
}
}