58 lines
826 B
CSS
58 lines
826 B
CSS
|
|
body {
|
|
font-family: sans-serif;
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #F9E7DB;
|
|
color: #333;
|
|
font-family: Times New Roman;
|
|
}
|
|
main {
|
|
padding: 0 1rem;
|
|
margin: 0 auto;
|
|
max-width: 1280px;
|
|
}
|
|
section {
|
|
margin-bottom: 2rem;
|
|
}
|
|
li {
|
|
display: block;
|
|
padding: 0.5rem;
|
|
text-decoration: none;
|
|
float: left;
|
|
}
|
|
a {
|
|
color: #333;
|
|
text-decoration: none;
|
|
}
|
|
h1 {
|
|
color: #CC4331;
|
|
vertical-align: baseline;
|
|
text-align: center;
|
|
font-size: 1.5rem;
|
|
line-height: unset !important;
|
|
}
|
|
h2 {
|
|
color: #CC4331;
|
|
line-height: 1.2;
|
|
text-align: center;
|
|
}
|
|
p {
|
|
text-indent: 10px;
|
|
}
|
|
p span {
|
|
font-weight: bold;
|
|
}
|
|
footer {
|
|
background-color: #CC4331;
|
|
padding: 0.7rem 1rem;
|
|
color: #F9E7DB;
|
|
text-align: center;
|
|
padding: 0.5rem 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
font-size: 0.9rem;
|
|
}
|
|
|