accounts-frontend/src/pages/rules/rules.scss

77 lines
1.1 KiB
SCSS
Raw Normal View History

@import "~components/ui/colors.scss";
@import "~components/ui/fonts.scss";
2016-05-22 21:26:52 +05:30
.rules {
max-width: 500px;
margin: 30px auto 0;
padding: 0 20px;
2016-05-22 21:26:52 +05:30
}
.rulesSection {
margin-bottom: 30px;
}
.rulesSectionTitle {
line-height: 50px;
font-family: $font-family-title;
2016-05-22 21:26:52 +05:30
font-size: 20px;
color: #fff;
padding: 0;
margin: 0;
text-align: center;
background: $blue;
2016-05-22 21:26:52 +05:30
}
.rulesBody {
padding: 20px;
2016-05-22 21:26:52 +05:30
background: #fff;
font-size: 14px;
}
%rulesTextFormat {
line-height: 1.4;
margin-bottom: 10px;
}
.blockDescription {
@extend %rulesTextFormat;
p {
@extend %rulesTextFormat;
}
2016-05-22 21:26:52 +05:30
}
.rulesList {
padding: 0;
margin: 0;
padding-left: 20px;
2016-05-22 21:26:52 +05:30
}
.rulesItem {
@extend %rulesTextFormat;
2016-05-22 21:26:52 +05:30
list-style: decimal;
&:last-of-type {
margin-bottom: 0;
}
2016-05-22 21:26:52 +05:30
a {
color: #444;
border-bottom: 1px dotted #aaa;
text-decoration: none;
transition: .25s
}
a:hover {
border-bottom-color: #444
}
}
.footer {
text-align: center;
margin-bottom: 20px;
}