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.

147 lines
1.9 KiB

5 years ago
body {
font-family: $font-sans;
font-weight: 400;
5 years ago
letter-spacing: 1px;
5 years ago
margin: 0;
5 years ago
color: $dark-gray;
5 years ago
overflow-x: hidden;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
a,
input,
5 years ago
select,
option,
5 years ago
button {
text-decoration: none;
outline: none;
&:active,
&:visited,
&:hover,
&:focus{
outline: none;
text-decoration: none;
}
&::-moz-focus-inner {
border: 0 !important;
}
5 years ago
}
.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;
}
5 years ago
.w-100 {
width: 100% !important;
}
.h-100 {
height: 100% !important;
}
5 years ago
.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 {
5 years ago
min-height: calc(100vh - #{$footer-height});
5 years ago
padding: $header-height-mobile 10px 0 10px;
@media (min-width: map-get($grid-breakpoints, 'md')) {
padding: $header-height 40px 0 40px;
}
5 years ago
&.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;
}