2016-05-26 03:07:18 +05:30
|
|
|
@import '~components/ui/colors.scss';
|
|
|
|
@import '~components/ui/fonts.scss';
|
|
|
|
@import '~components/ui/popup/popup.scss';
|
|
|
|
|
2016-06-18 21:05:39 +05:30
|
|
|
/* Form state */
|
|
|
|
|
2016-05-22 22:55:38 +05:30
|
|
|
.contactForm {
|
2016-06-16 19:41:57 +05:30
|
|
|
composes: popupWrapper from 'components/ui/popup/popup.scss';
|
|
|
|
|
|
|
|
@include popupBounding(500px);
|
2016-05-22 22:55:38 +05:30
|
|
|
}
|
|
|
|
|
2016-05-26 03:07:18 +05:30
|
|
|
.philosophicalThought {
|
|
|
|
font-family: $font-family-title;
|
|
|
|
font-size: 19px;
|
|
|
|
color: $green;
|
2016-05-22 22:55:38 +05:30
|
|
|
text-align: center;
|
2016-05-26 03:07:18 +05:30
|
|
|
margin-bottom: 5px;
|
2016-05-22 22:55:38 +05:30
|
|
|
}
|
|
|
|
|
2016-05-26 03:07:18 +05:30
|
|
|
.formDisclaimer {
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 14px;
|
|
|
|
text-align: center;
|
|
|
|
max-width: 400px;
|
|
|
|
margin: 0 auto 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pairInputRow {
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pairInput {
|
|
|
|
width: 50%;
|
|
|
|
|
|
|
|
&:first-of-type {
|
|
|
|
margin-right: $popupPadding;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.formMargin {
|
|
|
|
margin-bottom: 20px;
|
2016-05-22 22:55:38 +05:30
|
|
|
}
|
|
|
|
|
2016-06-18 21:05:39 +05:30
|
|
|
/* Success State */
|
|
|
|
|
|
|
|
.successState {
|
|
|
|
composes: popupWrapper from 'components/ui/popup/popup.scss';
|
|
|
|
|
|
|
|
@include popupBounding(320px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.successBody {
|
|
|
|
composes: body from 'components/ui/popup/popup.scss';
|
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.successDescription {
|
|
|
|
@extend .formDisclaimer;
|
|
|
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.successIcon {
|
|
|
|
composes: checkmark from 'components/ui/icons.scss';
|
|
|
|
|
|
|
|
font-size: 90px;
|
|
|
|
color: #AAA;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
line-height: 71px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sentToEmail {
|
|
|
|
font-family: $font-family-title;
|
|
|
|
color: #444;
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Common */
|
|
|
|
|
2016-05-22 22:55:38 +05:30
|
|
|
.footer {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|