44 lines
513 B
CSS
44 lines
513 B
CSS
html,
|
|
body {
|
|
height: 100%;
|
|
font-family: "EB Garamond";
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
main {
|
|
flex: 1;
|
|
}
|
|
|
|
header,
|
|
footer {
|
|
text-align: center;
|
|
padding: 10px 0;
|
|
background-color: #f3f3f3;
|
|
}
|
|
|
|
header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.header-left {
|
|
flex: 1;
|
|
text-align: left;
|
|
}
|
|
|
|
.header-right {
|
|
flex: 1;
|
|
text-align: right;
|
|
}
|
|
|
|
img.logo {
|
|
width: 7%;
|
|
height: auto;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none; /* no bullet points */
|
|
}
|