71 lines
1.2 KiB
SCSS
71 lines
1.2 KiB
SCSS
@import "../mixins/breakpoints";
|
|
|
|
.showcase-card {
|
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.06);
|
|
max-width: 810px;
|
|
position: relative;
|
|
margin: auto;
|
|
margin-bottom: 17px;
|
|
|
|
&__left, &__right {
|
|
height: 100%;
|
|
text-align: center;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
&__left {
|
|
width: 320px;
|
|
animation: showcase-img-appearance 1s;
|
|
|
|
img {
|
|
animation: showcase-img-appearance 1.5s;
|
|
padding: 40px;
|
|
width: 100%;
|
|
}
|
|
&.shape-one {
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
}
|
|
}
|
|
|
|
&__right {
|
|
width: 480px;
|
|
padding: 45px 55px 45px 20px;
|
|
font-size: 14px;
|
|
|
|
h2 {
|
|
font-size: 18px;
|
|
font-family: 'Open Sans';
|
|
font-weight: 600;
|
|
color: #363a41;
|
|
}
|
|
|
|
p {
|
|
margin: 22px 0;
|
|
text-align: left;
|
|
}
|
|
|
|
button {
|
|
background-color: white;
|
|
border: 1px solid #899ea5;
|
|
padding: 7px 15px;
|
|
color: #576c72;
|
|
font-weight: 600;
|
|
outline: 0;
|
|
}
|
|
|
|
@include media-breakpoint-down(md) {
|
|
width: inherit;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
&__close {
|
|
position: absolute;
|
|
top: 20px;
|
|
right: 20px;
|
|
cursor: pointer;
|
|
}
|
|
}
|