52 lines
636 B
CSS
52 lines
636 B
CSS
|
.container, footer, header {
|
||
|
padding: 20px;
|
||
|
border-left: 1px solid burlywood;
|
||
|
border-right: 1px solid burlywood;
|
||
|
background-color: beige;
|
||
|
}
|
||
|
header {
|
||
|
border-bottom: 1px solid burlywood;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
line-height: 150%;
|
||
|
text-indent: 30px;
|
||
|
}
|
||
|
|
||
|
section{
|
||
|
margin: 10px;
|
||
|
}
|
||
|
|
||
|
table {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
tr:nth-child(odd) {
|
||
|
background-color: burlywood;
|
||
|
}
|
||
|
|
||
|
th {
|
||
|
width: 20%;
|
||
|
}
|
||
|
|
||
|
td {
|
||
|
padding: 10px;
|
||
|
border: 1px solid burlywood;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
margin-bottom: 15px;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
text-align: center;
|
||
|
border-top: 1px solid burlywood;
|
||
|
}
|
||
|
html{
|
||
|
max-width: 1280px;
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
|
||
|
|