accounts-frontend/packages/app/components/auth/finish/finish.scss

77 lines
1.2 KiB
SCSS
Raw Normal View History

@import '~app/components/ui/colors.scss';
@import '~app/components/ui/fonts.scss';
.finishPage {
2020-05-24 04:38:24 +05:30
font-family: $font-family-title;
position: relative;
max-width: 515px;
padding-top: 40px;
margin: 0 auto;
text-align: center;
}
.iconBackground {
2020-05-24 04:38:24 +05:30
position: absolute;
top: -15px;
transform: translateX(-50%);
font-size: 200px;
color: #e0d9cf;
z-index: -1;
}
.successBackground {
2020-05-24 04:38:24 +05:30
composes: checkmark from '~app/components/ui/icons.scss';
@extend .iconBackground;
}
.failBackground {
2020-05-24 04:38:24 +05:30
composes: close from '~app/components/ui/icons.scss';
@extend .iconBackground;
}
.title {
2020-05-24 04:38:24 +05:30
font-size: 22px;
margin-bottom: 10px;
}
.greenTitle {
2020-05-24 04:38:24 +05:30
composes: title;
2020-05-24 04:38:24 +05:30
color: $green;
2020-05-24 04:38:24 +05:30
.appName {
color: darker($green);
}
}
.redTitle {
2020-05-24 04:38:24 +05:30
composes: title;
2020-05-24 04:38:24 +05:30
color: $red;
2020-05-24 04:38:24 +05:30
.appName {
color: darker($red);
}
}
.description {
2020-05-24 04:38:24 +05:30
font-size: 18px;
margin-bottom: 10px;
}
.codeContainer {
2020-05-24 04:38:24 +05:30
margin-bottom: 5px;
margin-top: 35px;
}
.code {
2020-05-24 04:38:24 +05:30
$border: 5px solid darker($green);
2020-05-24 04:38:24 +05:30
display: inline-block;
border-right: $border;
border-left: $border;
padding: 5px 10px;
word-break: break-all;
text-align: center;
}