sudo-archive/src/components/Card.css

27 lines
480 B
CSS
Raw Normal View History

2021-07-13 22:31:37 +00:00
.card {
2021-07-14 22:09:42 +00:00
background-color: var(--card);
2021-07-13 22:31:37 +00:00
padding: 3rem 4rem;
margin: 0 3rem;
2021-10-26 12:16:55 +00:00
margin-bottom: 6rem;
2021-07-13 22:31:37 +00:00
border-radius: 10px;
box-sizing: border-box;
2021-07-13 22:57:31 +00:00
transition: height 500ms ease-in-out;
2021-07-13 22:31:37 +00:00
}
2021-07-13 22:57:31 +00:00
.card-wrapper.full {
width: 81rem;
2021-07-13 22:31:37 +00:00
}
.card-wrapper {
transition: height 500ms ease-in-out;
2021-07-13 22:57:31 +00:00
width: 45rem;
max-width: 100%;
2021-07-13 22:31:37 +00:00
}
2021-07-13 22:57:31 +00:00
@media screen and (max-width: 700px) {
.card {
margin: 0;
2021-10-26 12:16:55 +00:00
margin-bottom: 6rem;
2021-07-13 22:57:31 +00:00
padding: 3rem 2rem;
}
2021-07-13 22:31:37 +00:00
}