29 lines
432 B
Plaintext
29 lines
432 B
Plaintext
@import "../../../../styles/shadow";
|
|
|
|
.card {
|
|
.card-3;
|
|
margin: 20px;
|
|
border-radius: 8px;
|
|
background: #fffe;
|
|
overflow: hidden;
|
|
width: 800px;
|
|
transition: 3s all ease-in-out;
|
|
@media screen and (max-width: 860px) {
|
|
width: 100vw;
|
|
border-radius: 0px;
|
|
background: #fffa;
|
|
margin: 0;
|
|
}
|
|
|
|
&.padding {
|
|
padding: 20px;
|
|
}
|
|
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.heading {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
}
|