2019-12-08 00:32:00 +05:30
|
|
|
@import '~app/components/ui/fonts.scss';
|
|
|
|
@import '~app/components/ui/colors.scss';
|
2017-08-06 05:14:35 +05:30
|
|
|
|
|
|
|
.page {
|
2019-11-27 14:33:32 +05:30
|
|
|
border-top: 50px solid #ddd8ce;
|
2017-08-06 05:14:35 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
padding: 85px 10px;
|
2017-08-06 05:14:35 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.wrapper {
|
2019-11-27 14:33:32 +05:30
|
|
|
position: relative;
|
2017-08-06 05:14:35 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
margin: 0 auto;
|
|
|
|
padding: 55px 25px;
|
|
|
|
max-width: 330px;
|
|
|
|
box-sizing: border-box;
|
2017-08-06 05:14:35 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
background: #fff;
|
|
|
|
border: 3px solid #ddd8ce;
|
2017-08-06 05:14:35 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
text-align: center;
|
2017-08-06 05:14:35 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
2019-11-27 14:33:32 +05:30
|
|
|
$borderWidth: 3px;
|
2017-08-06 05:14:35 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
position: absolute;
|
|
|
|
top: -28px;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, 0);
|
2017-08-06 05:14:35 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
padding: 0 20px;
|
2017-08-06 05:14:35 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
font-family: $font-family-title;
|
|
|
|
font-size: 33px;
|
|
|
|
line-height: 50px - $borderWidth * 2;
|
|
|
|
color: #fff;
|
|
|
|
background: $green;
|
|
|
|
border: 3px solid darker($green);
|
|
|
|
|
|
|
|
&:hover {
|
2017-08-06 05:14:35 +05:30
|
|
|
color: #fff;
|
|
|
|
background: $green;
|
|
|
|
border: 3px solid darker($green);
|
2019-11-27 14:33:32 +05:30
|
|
|
}
|
2017-08-06 05:14:35 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
2019-11-27 14:33:32 +05:30
|
|
|
font-family: $font-family-title;
|
|
|
|
font-size: 20px;
|
|
|
|
margin-bottom: 20px;
|
2017-08-06 05:14:35 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.checkmark {
|
2019-12-08 00:32:00 +05:30
|
|
|
composes: checkmark from '~app/components/ui/icons.scss';
|
2017-08-06 05:14:35 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
color: lighter($green);
|
|
|
|
font-size: 66px;
|
|
|
|
margin-bottom: 28px;
|
2017-08-06 05:14:35 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.description {
|
2019-11-27 14:33:32 +05:30
|
|
|
font-size: 13px;
|
|
|
|
color: #9a9a9a;
|
|
|
|
line-height: 1.4;
|
2017-08-06 05:14:35 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
b {
|
|
|
|
color: #666;
|
|
|
|
}
|
2017-08-06 05:14:35 +05:30
|
|
|
}
|