mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-05 04:59:26 +05:30
66 lines
1011 B
SCSS
66 lines
1011 B
SCSS
|
@import '~components/ui/fonts.scss';
|
||
|
@import '~components/ui/colors.scss';
|
||
|
|
||
|
.contentWithBackButton {
|
||
|
position: relative;
|
||
|
padding-left: 60px;
|
||
|
width: 400px;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
|
||
|
.backButton {
|
||
|
composes: arrow from 'components/ui/icons.scss';
|
||
|
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
top: 15px;
|
||
|
width: 25px;
|
||
|
height: 25px;
|
||
|
padding: 15px;
|
||
|
|
||
|
transform: rotate(90deg);
|
||
|
|
||
|
color: #ccc;
|
||
|
font-size: 25px;
|
||
|
}
|
||
|
|
||
|
.form {
|
||
|
background: #fff;
|
||
|
overflow: hidden; // disable margin collapsing
|
||
|
}
|
||
|
|
||
|
.formBody {
|
||
|
margin: 30px;
|
||
|
}
|
||
|
|
||
|
.formRow {
|
||
|
margin: 25px 0;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
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;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.description {
|
||
|
font-size: 13px;
|
||
|
color: #9a9a9a;
|
||
|
line-height: 1.3;
|
||
|
margin-top: 25px;
|
||
|
}
|