37 lines
682 B
CSS
37 lines
682 B
CSS
.card-section {
|
|
min-height: 100vh;
|
|
width: 100vw;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding-top: 5px;
|
|
}
|
|
|
|
.card-category-headline {
|
|
margin-top: 1em;
|
|
color: #c55e00;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.card-category {
|
|
width: 100vw;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
padding-top: 5px;
|
|
}
|
|
|
|
.card {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid red;
|
|
border-radius: 25px;
|
|
min-width: 30%;
|
|
min-height: 200px;
|
|
margin: 10px;
|
|
background: rgba(0,0,0,0.5);
|
|
} |