bergamotoil.net/_werc/pub/style.css

24 lines
959 B
CSS
Raw Normal View History

2025-02-22 14:40:09 -07:00
body { display: flex; flex-wrap: wrap; font-family: sans; }
header { flex-basis: 100%; flex-shrink: 0; }
article { flex-basis: 60%; padding-left: 1em; }
footer { flex-basis: 100%; flex-shrink: 0; }
header nav { display: flex; justify-content: space-between; }
nav a, header a { text-decoration: none ; color: inherit; }
header h1 span { margin-left: 1em; font-size: 50%; font-style: italic; }
body > nav { flex-basis: content; padding-right: 1vw; min-width: 16em; }
nav ul { display: flex; flex-direction: column; list-style-type: none; list-style-position: outside; padding-left: 0; }
nav li ul { padding-left: 0.6em }
footer { display: flex; justify-content: space-between; }
2025-02-22 14:47:48 -07:00
/* body */
2025-02-22 16:03:04 -07:00
body { background-color: #ffdab3 }
2025-02-22 14:47:48 -07:00
2025-02-22 14:40:09 -07:00
/* header and top bar */
2025-02-22 22:06:53 -07:00
header h1 { border: 2px solid black; background-color: #ffe6cc }
header nav { background-color: #ffe6cc; border: 2px solid black; }
2025-02-22 16:03:04 -07:00
/* sidebar */
2025-02-22 22:06:53 -07:00
/* article */
body > article { background-color: #ffe6cc }