2016-01-08 18:44:35 +05:30
|
|
|
|
@import '~components/ui/colors.scss';
|
|
|
|
|
|
|
|
|
|
.signIn {
|
|
|
|
|
margin-bottom: 10px;
|
2016-01-09 19:21:55 +05:30
|
|
|
|
text-align: center;
|
2016-01-08 18:44:35 +05:30
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.helpLinks {
|
|
|
|
|
margin: 8px 0;
|
|
|
|
|
|
|
|
|
|
color: #444;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: #444;
|
|
|
|
|
border-bottom: 1px dotted #444;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
transition: .25s;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
border-bottom-color: #777;
|
|
|
|
|
color: #777;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-01-09 19:21:55 +05:30
|
|
|
|
|
2016-01-09 20:46:20 +05:30
|
|
|
|
// sign in second step
|
2016-01-09 19:21:55 +05:30
|
|
|
|
@import '~components/ui/fonts.scss';
|
|
|
|
|
.avatar {
|
|
|
|
|
width: 90px;
|
|
|
|
|
height: 90px;
|
|
|
|
|
font-size: 90px;
|
2016-01-09 21:17:21 +05:30
|
|
|
|
line-height: 1;
|
2016-01-09 19:21:55 +05:30
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.email {
|
|
|
|
|
font-family: $font-family-title;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
2016-01-09 20:46:20 +05:30
|
|
|
|
|
|
|
|
|
// account activation
|
2016-01-10 05:34:44 +05:30
|
|
|
|
@import '~components/ui/fonts.scss';
|
2016-01-09 20:46:20 +05:30
|
|
|
|
.description {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.descriptionImage {
|
|
|
|
|
composes: envelope from 'components/ui/icons.scss';
|
|
|
|
|
|
|
|
|
|
font-size: 100px;
|
|
|
|
|
color: $blue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.descriptionText {
|
2016-01-10 05:34:44 +05:30
|
|
|
|
font-family: $font-family-title;
|
|
|
|
|
margin: 5px 0 19px;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.activationCodeInput {
|
|
|
|
|
composes: blueTextField from './../ui/form.scss';
|
|
|
|
|
|
|
|
|
|
text-align: center;
|
2016-01-09 20:46:20 +05:30
|
|
|
|
}
|
2016-01-09 21:17:21 +05:30
|
|
|
|
|
|
|
|
|
// app permissions
|
2016-01-10 05:34:44 +05:30
|
|
|
|
$authBodyLeftRightPadding: 32px;
|
|
|
|
|
$authBodyTopBottomPadding: 30px;
|
|
|
|
|
|
|
|
|
|
.authBody {
|
2016-01-18 10:58:43 +05:30
|
|
|
|
composes: body from 'components/ui/panel.scss';
|
2016-01-10 05:34:44 +05:30
|
|
|
|
|
|
|
|
|
padding: $authBodyTopBottomPadding $authBodyLeftRightPadding;
|
2016-01-09 21:17:21 +05:30
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-10 05:34:44 +05:30
|
|
|
|
.authBodyHeader {
|
2016-01-18 10:58:43 +05:30
|
|
|
|
composes: defaultBodyHeader from 'components/ui/panel.scss';
|
2016-01-10 05:34:44 +05:30
|
|
|
|
|
|
|
|
|
// Отступы сверху и снизу разные т.к. мы ужимаем высоту линии строки с логином на 2 пикселя и из-за этого теряем отступ снизу
|
|
|
|
|
padding: 15px $authBodyLeftRightPadding 17px;
|
|
|
|
|
margin: (-$authBodyTopBottomPadding) (-$authBodyLeftRightPadding) $authBodyTopBottomPadding;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.authInfo {
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-09 21:17:21 +05:30
|
|
|
|
.authInfoAvatar {
|
2016-01-10 05:34:44 +05:30
|
|
|
|
$size: 30px;
|
|
|
|
|
|
2016-01-09 21:17:21 +05:30
|
|
|
|
float: left;
|
2016-01-10 05:34:44 +05:30
|
|
|
|
height: $size;
|
|
|
|
|
width: $size;
|
|
|
|
|
font-size: $size;
|
2016-01-09 21:17:21 +05:30
|
|
|
|
line-height: 1;
|
|
|
|
|
margin-right: 10px;
|
2016-01-10 05:34:44 +05:30
|
|
|
|
margin-top: 2px;
|
2016-01-09 21:17:21 +05:30
|
|
|
|
color: #aaa;
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.authInfoTitle {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #666;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.authInfoEmail {
|
|
|
|
|
font-family: $font-family-title;
|
|
|
|
|
font-size: 20px;
|
2016-01-10 05:34:44 +05:30
|
|
|
|
line-height: 16px;
|
2016-01-09 21:17:21 +05:30
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.disclaimer {
|
|
|
|
|
font-family: $font-family-title;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
color: #dd8650;
|
2016-01-10 05:34:44 +05:30
|
|
|
|
padding-bottom: 6px;
|
2016-01-09 21:17:21 +05:30
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.permissionsList {
|
|
|
|
|
list-style: none;
|
2016-01-10 05:34:44 +05:30
|
|
|
|
margin-top: 10px;
|
2016-01-09 21:17:21 +05:30
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
color: #a9a9a9;
|
2016-01-10 05:34:44 +05:30
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
padding-bottom: 4px;
|
|
|
|
|
padding-left: 17px;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
&:last-of-type {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
2016-01-09 21:17:21 +05:30
|
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
|
content: "• ";
|
|
|
|
|
color: lighter($light_violet);
|
2016-01-10 05:34:44 +05:30
|
|
|
|
font-size: 39px; // ~ 9px
|
|
|
|
|
line-height: 9px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 6px;
|
|
|
|
|
left: 0;
|
2016-01-09 21:17:21 +05:30
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|