94 lines
1.8 KiB
SCSS
94 lines
1.8 KiB
SCSS
#complete {
|
|
background-color: #fff;
|
|
.close-button {
|
|
color: $dark-gray;
|
|
position: absolute;
|
|
top: 5px;
|
|
right: 10px;
|
|
padding: 15px;
|
|
font-size: 36px;
|
|
}
|
|
.complete-layout {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
&__expand {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
opacity: 0;
|
|
transition: opacity .3s;
|
|
&.fade-in {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
.share-the-love-illustration {
|
|
width: 5rem;
|
|
margin: 1rem;
|
|
}
|
|
.send-feedback-illustration {
|
|
height: 16rem;
|
|
margin: 1rem;
|
|
}
|
|
.feedback-title {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
color: $dark-gray;
|
|
margin: 20px 10px;
|
|
text-align: center;
|
|
}
|
|
.subtitle {
|
|
padding: 10px 30px 20px;
|
|
text-align: center;
|
|
color: $mid-gray;
|
|
}
|
|
.icon-svg > img {
|
|
height: 16rem;
|
|
width: 16rem;
|
|
margin: 10px;
|
|
}
|
|
.socialsharing-icon {
|
|
display: inline-block;
|
|
width: 60px;
|
|
}
|
|
.addressbook-icon-svg {
|
|
display: inline-block;
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
.share-buttons {
|
|
padding: 50px 10px 30px;
|
|
background-color: $subtle-gray;
|
|
text-align: center;
|
|
transform: translateY(100%);
|
|
opacity: 0;
|
|
animation-name: slideUpFadeIn;
|
|
animation-duration: .3s;
|
|
animation-fill-mode: forwards;
|
|
animation-timing-function: cubic-bezier(0.4, 0.0, 0.2, 1);
|
|
animation-delay: .2s;
|
|
}
|
|
.share-buttons__action {
|
|
display: inline-block;
|
|
color: #667;
|
|
font-size: .9rem;
|
|
width: 90px;
|
|
height: 90px;
|
|
margin-bottom: 20px;
|
|
}
|
|
}
|
|
|
|
@keyframes slideUpFadeIn {
|
|
from {
|
|
transform: translateY(100%);
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
}
|