26 lines
471 B
CSS
26 lines
471 B
CSS
.hero {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.hero__image {
|
|
background-color: #20B5B6;
|
|
width: 65%;
|
|
height: 600px;
|
|
border-radius: .375rem;
|
|
box-shadow: var(--card-box-shadow);
|
|
}
|
|
.featured-cards-list {
|
|
width: 30%;
|
|
height: 600px;
|
|
display:flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.featured-cards__list {
|
|
background-color: #00AAE0;
|
|
height: 150px;
|
|
border-radius: .375rem;
|
|
box-shadow: var(--card-box-shadow);
|
|
}
|