You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: $font-sans;
|
|
|
|
font-weight: 400;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
margin: 0;
|
|
|
|
color: $black;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a,
|
|
|
|
input,
|
|
|
|
select,
|
|
|
|
option,
|
|
|
|
button {
|
|
|
|
text-decoration: none;
|
|
|
|
outline: none;
|
|
|
|
&:active,
|
|
|
|
&:visited,
|
|
|
|
&:hover,
|
|
|
|
&:focus{
|
|
|
|
outline: none;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.font-serif {
|
|
|
|
font-family: $font-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.font-sans {
|
|
|
|
font-family: $font-sans;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-right {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-left {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
@each $bp in $grid-breakpoints {
|
|
|
|
$key: nth($bp, 1);
|
|
|
|
$value: nth($bp, 2);
|
|
|
|
|
|
|
|
@media (min-width: $value) {
|
|
|
|
.text-#{$key}-center{
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.text-#{$key}-left {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.text-#{$key}-right {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-white {
|
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-black {
|
|
|
|
color: $black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-gray {
|
|
|
|
color: $gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-bold {
|
|
|
|
font-weight: bold !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-uppercase {
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.w-100 {
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.h-100 {
|
|
|
|
height: 100% !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.middle {
|
|
|
|
@include middle();
|
|
|
|
}
|
|
|
|
|
|
|
|
.full-middle {
|
|
|
|
@include full-middle();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Font size
|
|
|
|
@each $size in 10, 12, 13, 14, 15, 16, 18, 20, 22, 24, 25, 26, 28, 30, 32, 34, 36, 38, 40, 42, 46, 48, 50, 52, 54, 60, 72 {
|
|
|
|
.font-#{$size} {font-size: #{$size/16}rem !important;}
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-content {
|
|
|
|
|
|
|
|
min-height: calc(100vh - #{$footer-height});
|
|
|
|
padding: $header-height-mobile 10px 0 10px;
|
|
|
|
|
|
|
|
@media (min-width: map-get($grid-breakpoints, 'md')) {
|
|
|
|
padding: $header-height 40px 0 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.container-fluid {
|
|
|
|
&.full-width {
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
section {
|
|
|
|
margin: 50px auto;
|
|
|
|
&.container-full {
|
|
|
|
padding: 0;
|
|
|
|
max-width: initial;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.debug-border {
|
|
|
|
border: 1px solid red;
|
|
|
|
}
|