35 lines
609 B
CSS
35 lines
609 B
CSS
.banner img {
|
|
height: 300px;
|
|
width: 100%;
|
|
object-fit: cover;
|
|
object-position: top center;
|
|
display: block;
|
|
}
|
|
|
|
.body-text {
|
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
|
|
color: #222;
|
|
line-height: 1.5;
|
|
font-size: 16px;
|
|
padding: 18px;
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 1px 4px rgba(0,0,0,0.04);
|
|
}
|
|
|
|
.body-text ul {
|
|
margin: 0;
|
|
padding-left: 1.25rem;
|
|
list-style: disc;
|
|
color: inherit;
|
|
}
|
|
|
|
.body-text ul ul {
|
|
padding-left: 1rem;
|
|
list-style: circle;
|
|
}
|
|
|
|
.body-text li {
|
|
margin: 0.5rem 0;
|
|
padding-right: 0.25rem;
|
|
} |