44 lines
480 B
CSS
44 lines
480 B
CSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
.container {
|
|
max-width: 800px;
|
|
padding: 20px;
|
|
margin: auto;
|
|
}
|
|
|
|
header {
|
|
margin-top: 40px;
|
|
margin-bottom: 80px;
|
|
text-align: center;
|
|
}
|
|
|
|
section {
|
|
margin-top: 40px;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
section h2 {
|
|
text-align: center;
|
|
}
|
|
|
|
section h3 .date {
|
|
font-size: medium;
|
|
color: dimgray;
|
|
}
|
|
|
|
section .description {
|
|
padding: 10px;
|
|
list-style-position: inside;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
}
|