www/stylesheet.css

37 lines
681 B
CSS
Raw Normal View History

:root {
--system-ui: 'comic_monobold', ui-monospace, Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
}
body {
background-color: #f1e9df;
color: #89a06b;
margin: 30px 20%;
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
font-family: var(--system-ui);
font-size: 1.4em;
}
header {
align-self: center;
padding: 0 18%;
padding-bottom: 20px;
border-bottom: 1px solid #a89a8e;
}
h1 {
text-align: center;
font-size: 3.2rem;
letter-spacing: 0.5rem;
}
nav menu {
margin-top: 10px;
font-size: 1rem;
list-style-type: none;
}
footer {
align-self: center;
padding: 20px 18%;
border-top: 1px solid #a89a8e;
font-size: 0.8rem
}