You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
537 B
31 lines
537 B
.card { |
|
background-color: var(--card); |
|
padding: 3rem 4rem; |
|
margin: 0 3rem; |
|
margin-bottom: 6rem; |
|
border-radius: 10px; |
|
box-sizing: border-box; |
|
transition: height 500ms ease-in-out; |
|
} |
|
|
|
.card-wrapper.full { |
|
width: 81rem; |
|
} |
|
|
|
.card-wrapper { |
|
transition: height 500ms ease-in-out; |
|
width: 45rem; |
|
max-width: 100%; |
|
} |
|
|
|
.card-wrapper.overflow-hidden { |
|
overflow: hidden; |
|
} |
|
|
|
@media screen and (max-width: 700px) { |
|
.card { |
|
margin: 0; |
|
margin-bottom: 6rem; |
|
padding: 3rem 2rem; |
|
} |
|
} |