33 lines
557 B
SCSS
Executable File
Vendored
33 lines
557 B
SCSS
Executable File
Vendored
@use "../abstracts/mixin" as *;
|
|
@use "../abstracts/variables" as *;
|
|
|
|
.page_container {
|
|
@include container;
|
|
background-color: #fff;
|
|
padding: 20px;
|
|
@media (min-width: 768px) {
|
|
width: CALC(100% - 270px);
|
|
padding: 32px 135px;
|
|
}
|
|
}
|
|
.page_body {
|
|
font-family: Nunito, serif;
|
|
font-size: 15px;
|
|
line-height: 1.6;
|
|
color: $text-dark-color;
|
|
|
|
&.margin_bottom {
|
|
margin-bottom: 40px;
|
|
}
|
|
}
|
|
.action_button {
|
|
@include font_normal;
|
|
line-height: 1.4;
|
|
text-decoration: none;
|
|
color: $text-dark-color;
|
|
|
|
.fa {
|
|
margin-right: 10px;
|
|
}
|
|
}
|