2019-12-07 21:02:00 +02:00
|
|
|
@import '~app/components/ui/colors.scss';
|
|
|
|
@import '~app/components/ui/fonts.scss';
|
2016-01-04 08:02:13 +02:00
|
|
|
|
|
|
|
.appInfo {
|
2020-05-24 02:08:24 +03:00
|
|
|
max-width: 270px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 55px 25px;
|
2016-01-04 08:02:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.logoContainer {
|
2020-05-24 02:08:24 +03:00
|
|
|
position: relative;
|
|
|
|
padding: 15px 0;
|
2016-01-04 08:02:13 +02:00
|
|
|
|
2020-05-24 02:08:24 +03:00
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
2016-01-04 08:02:13 +02:00
|
|
|
|
2020-05-24 02:08:24 +03:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
height: 3px;
|
|
|
|
width: 40px;
|
2016-01-04 08:02:13 +02:00
|
|
|
|
2020-05-24 02:08:24 +03:00
|
|
|
background: $green;
|
|
|
|
}
|
2016-01-04 08:02:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
2020-05-24 02:08:24 +03:00
|
|
|
font-family: $font-family-title;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 36px;
|
2016-01-04 08:02:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.descriptionContainer {
|
2020-05-24 02:08:24 +03:00
|
|
|
margin: 20px 0;
|
2016-01-04 08:02:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.description {
|
2020-05-24 02:08:24 +03:00
|
|
|
$font-color: #ccc;
|
|
|
|
font-family: $font-family-base;
|
|
|
|
color: $font-color;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 1.7;
|
|
|
|
margin-top: 7px;
|
2016-05-22 22:17:34 +03:00
|
|
|
|
2020-05-24 02:08:24 +03:00
|
|
|
a {
|
|
|
|
color: lighten($font-color, 10%);
|
|
|
|
border-bottom-color: #666;
|
2016-05-22 22:17:34 +03:00
|
|
|
|
2020-05-24 02:08:24 +03:00
|
|
|
&:hover {
|
|
|
|
color: $font-color;
|
|
|
|
}
|
2016-05-22 22:17:34 +03:00
|
|
|
}
|
2016-01-04 08:02:13 +02:00
|
|
|
}
|
2016-02-06 12:47:51 +02:00
|
|
|
|
|
|
|
.goToAuth {
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 720px) {
|
2020-05-24 02:08:24 +03:00
|
|
|
.goToAuth {
|
|
|
|
display: none;
|
|
|
|
}
|
2016-02-06 12:47:51 +02:00
|
|
|
}
|
2016-05-19 22:41:43 +03:00
|
|
|
|
2016-05-27 23:38:11 +03:00
|
|
|
.footer {
|
2020-05-24 02:08:24 +03:00
|
|
|
position: absolute;
|
|
|
|
bottom: 10px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 1.5;
|
2016-05-19 22:41:43 +03:00
|
|
|
}
|