2019-12-08 00:32:00 +05:30
|
|
|
@import '~app/components/ui/fonts.scss';
|
|
|
|
@import '~app/components/ui/colors.scss';
|
2016-04-17 15:05:04 +05:30
|
|
|
|
|
|
|
.contentWithBackButton {
|
2019-11-27 14:33:32 +05:30
|
|
|
position: relative;
|
|
|
|
max-width: 400px;
|
|
|
|
margin: 0 auto;
|
2016-04-17 15:05:04 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.backButton {
|
2019-11-27 14:33:32 +05:30
|
|
|
position: absolute;
|
|
|
|
left: -60px;
|
|
|
|
top: 15px;
|
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
|
|
|
padding: 15px;
|
|
|
|
font-size: 25px;
|
|
|
|
border-bottom: none;
|
|
|
|
|
|
|
|
color: #ccc;
|
|
|
|
|
|
|
|
transition: 0.3s;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: #9a9a9a;
|
|
|
|
}
|
2016-04-17 15:05:04 +05:30
|
|
|
}
|
|
|
|
|
2016-05-26 20:21:17 +05:30
|
|
|
.backIcon {
|
2019-12-08 00:32:00 +05:30
|
|
|
composes: arrowLeft from '~app/components/ui/icons.scss';
|
2016-05-26 20:21:17 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
position: relative;
|
2016-05-26 20:21:17 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.backText {
|
2019-11-27 14:33:32 +05:30
|
|
|
display: none;
|
2016-05-26 20:21:17 +05:30
|
|
|
}
|
|
|
|
|
2016-04-17 15:05:04 +05:30
|
|
|
.form {
|
2019-11-27 14:33:32 +05:30
|
|
|
background: #fff;
|
|
|
|
overflow: hidden; // disable margin collapsing
|
2016-04-17 15:05:04 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.formBody {
|
2019-11-27 14:33:32 +05:30
|
|
|
margin: 30px;
|
2016-04-17 15:05:04 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.formRow {
|
2019-11-27 14:33:32 +05:30
|
|
|
margin: 25px 0;
|
2016-04-17 15:05:04 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
2019-11-27 14:33:32 +05:30
|
|
|
position: relative;
|
|
|
|
font-size: 24px;
|
|
|
|
font-family: $font-family-title;
|
|
|
|
padding-bottom: 9px;
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
height: 3px;
|
|
|
|
width: 86px;
|
|
|
|
|
|
|
|
background: $green;
|
|
|
|
}
|
2016-04-17 15:05:04 +05:30
|
|
|
}
|
|
|
|
|
2016-05-02 23:02:03 +05:30
|
|
|
.violetTitle {
|
2019-11-27 14:33:32 +05:30
|
|
|
composes: title;
|
2016-05-02 23:02:03 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
&:after {
|
|
|
|
background: $violet;
|
|
|
|
}
|
2016-05-02 23:02:03 +05:30
|
|
|
}
|
|
|
|
|
2016-04-17 15:05:04 +05:30
|
|
|
.description {
|
2019-11-27 14:33:32 +05:30
|
|
|
font-size: 12px;
|
|
|
|
color: #666666;
|
|
|
|
line-height: 1.5;
|
|
|
|
margin-top: 25px;
|
2016-04-17 15:05:04 +05:30
|
|
|
}
|
2016-05-26 20:21:17 +05:30
|
|
|
|
2017-08-04 04:23:50 +05:30
|
|
|
.stepper {
|
2019-11-27 14:33:32 +05:30
|
|
|
width: 35%;
|
|
|
|
margin: 0 auto;
|
2017-08-04 04:23:50 +05:30
|
|
|
}
|
|
|
|
|
2016-05-26 20:21:17 +05:30
|
|
|
@media (max-width: 525px) {
|
2019-11-27 14:33:32 +05:30
|
|
|
.contentWithBackButton .title {
|
|
|
|
padding-top: 23px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.backButton {
|
|
|
|
top: 29px;
|
|
|
|
left: 27px;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
z-index: 1;
|
|
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.backIcon {
|
|
|
|
bottom: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.backText {
|
|
|
|
display: inline;
|
|
|
|
}
|
2016-05-26 20:21:17 +05:30
|
|
|
}
|