36 lines
504 B
CSS
36 lines
504 B
CSS
|
|
.landing-column {
|
|
width: 80%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding-top: 3rem;
|
|
color: white;
|
|
}
|
|
|
|
.landing-container {
|
|
display: grid;
|
|
width: 100%;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
|
|
.landing-section {
|
|
margin: 1rem;
|
|
padding: 1rem;
|
|
border-radius: 1rem;
|
|
color: white;
|
|
background: rgba(10,66,30, 0.75);
|
|
}
|
|
|
|
ol li {
|
|
list-style-type: circle;
|
|
}
|
|
|
|
@media (max-height: 700px) {
|
|
.landing-column {
|
|
width: 100%;
|
|
}
|
|
|
|
.landing-container {
|
|
display: block;
|
|
}
|
|
} |