movie-web/src/components/Card.css

26 lines
442 B
CSS
Raw Normal View History

2021-07-14 00:31:37 +02:00
.card {
background-color: #22232A;
padding: 3rem 4rem;
margin: 0 3rem;
border-radius: 10px;
box-sizing: border-box;
2021-07-14 00:57:31 +02:00
transition: height 500ms ease-in-out;
2021-07-14 00:31:37 +02:00
}
2021-07-14 00:57:31 +02:00
.card-wrapper.full {
width: 81rem;
2021-07-14 00:31:37 +02:00
}
.card-wrapper {
transition: height 500ms ease-in-out;
overflow: hidden;
2021-07-14 00:57:31 +02:00
width: 45rem;
max-width: 100%;
2021-07-14 00:31:37 +02:00
}
2021-07-14 00:57:31 +02:00
@media screen and (max-width: 700px) {
.card {
margin: 0;
padding: 3rem 2rem;
}
2021-07-14 00:31:37 +02:00
}