60 lines
618 B
CSS
60 lines
618 B
CSS
body {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.container {
|
|
max-width: 800px;
|
|
margin: auto;
|
|
}
|
|
|
|
.date {
|
|
font-style: italic;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
max-height: 500px;
|
|
}
|
|
|
|
.center-img img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
figcaption {
|
|
text-align: center;
|
|
font-style: italic;
|
|
}
|
|
|
|
h2 {
|
|
border-bottom: 1px solid #000;
|
|
}
|
|
|
|
header {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
header a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
header * {
|
|
display: inline;
|
|
}
|
|
|
|
nav {
|
|
margin-left: auto;
|
|
}
|
|
|
|
nav li {
|
|
padding: 20px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
nav li:hover {
|
|
background-color: #eee;
|
|
}
|