accounts-frontend/packages/app/components/contact/contactForm.scss

81 lines
1.2 KiB
SCSS
Raw Normal View History

@import '~app/components/ui/colors.scss';
@import '~app/components/ui/fonts.scss';
@import '~app/components/ui/popup/popup.scss';
/* Form state */
.contactFormBoundings {
2020-05-24 04:38:24 +05:30
@include popupBounding(500px);
2016-05-22 22:55:38 +05:30
}
.body {
padding: $popupPadding;
}
.philosophicalThought {
2020-05-24 04:38:24 +05:30
font-family: $font-family-title;
font-size: 19px;
color: $green;
text-align: center;
margin-bottom: 5px;
2016-05-22 22:55:38 +05:30
}
.formDisclaimer {
2020-05-24 04:38:24 +05:30
font-size: 12px;
line-height: 14px;
text-align: center;
max-width: 400px;
margin: 0 auto 10px;
}
.pairInputRow {
2020-05-24 04:38:24 +05:30
display: flex;
margin-bottom: 10px;
}
.pairInput {
2020-05-24 04:38:24 +05:30
width: 50%;
2020-05-24 04:38:24 +05:30
&:first-of-type {
margin-right: $popupPadding;
}
}
.formMargin {
2020-05-24 04:38:24 +05:30
margin-bottom: 20px;
2016-05-22 22:55:38 +05:30
}
/* Success State */
.successStateBoundings {
2020-05-24 04:38:24 +05:30
@include popupBounding(320px);
}
.successBody {
composes: body;
2020-05-24 04:38:24 +05:30
text-align: center;
}
.successDescription {
2020-05-24 04:38:24 +05:30
@extend .formDisclaimer;
2020-05-24 04:38:24 +05:30
margin-bottom: 15px;
padding: 0 20px;
}
.successIcon {
2020-05-24 04:38:24 +05:30
composes: checkmark from '~app/components/ui/icons.scss';
2020-05-24 04:38:24 +05:30
font-size: 90px;
color: #aaa;
margin-bottom: 20px;
line-height: 71px;
}
.sentToEmail {
2020-05-24 04:38:24 +05:30
font-family: $font-family-title;
color: #444;
font-size: 18px;
}