26 lines
292 B
CSS
26 lines
292 B
CSS
|
.container {
|
||
|
height: 100%;
|
||
|
border-radius: 16px;
|
||
|
background-color: var(--lightDark);
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.cover {
|
||
|
height: 198px;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.cardInfo {
|
||
|
padding: 2rem;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
font-size: 1.25em;
|
||
|
}
|
||
|
|
||
|
.description {
|
||
|
width: auto;
|
||
|
max-width: 320px;
|
||
|
margin: 1rem 0;
|
||
|
}
|