jackie/styles.css

55 lines
736 B
CSS
Raw Normal View History

2022-09-21 09:14:37 +00:00
body{
max-width: 1280px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
margin: 0 auto auto auto !important;
}
2022-09-21 07:47:44 +00:00
.container, footer, header {
padding: 20px;
2022-09-21 09:14:37 +00:00
background-color: beige;
2022-09-21 07:47:44 +00:00
border-left: 1px solid burlywood;
border-right: 1px solid burlywood;
}
header {
border-bottom: 1px solid burlywood;
}
p {
line-height: 150%;
text-indent: 30px;
2022-09-21 09:14:37 +00:00
text-align: justify;
2022-09-21 07:47:44 +00:00
}
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;
}