2018-12-09 07:21:01 +00:00
|
|
|
---
|
|
|
|
---
|
|
|
|
|
2020-08-23 10:01:06 +00:00
|
|
|
// Colors
|
2021-08-06 15:49:36 +00:00
|
|
|
$primary: #e5261f;
|
2021-08-07 11:54:56 +00:00
|
|
|
$primary-dark: #a01b16;
|
2020-08-23 10:01:06 +00:00
|
|
|
$secondary: #f88379;
|
|
|
|
$black: #2f2f41;
|
|
|
|
$white: #ffffff;
|
|
|
|
$white-offset: #fff6f8;
|
2021-08-07 11:54:56 +00:00
|
|
|
$steel: #5c5a5a;
|
2020-08-23 10:01:06 +00:00
|
|
|
|
|
|
|
// Links
|
|
|
|
$link-color: $primary;
|
|
|
|
$link-decoration: none;
|
|
|
|
$link-hover-color: lighten($primary, 10%);
|
|
|
|
$link-hover-decoration: underline;
|
|
|
|
|
|
|
|
// Fonts
|
|
|
|
$font-family-base: Helvetica, Arial, sans-serif, -apple-system;
|
2021-08-07 11:54:56 +00:00
|
|
|
$font-family-heading: "Playfair Display", serif, -apple-system;
|
2020-08-23 10:01:06 +00:00
|
|
|
|
|
|
|
// Footer
|
|
|
|
$footer-background-color: $primary;
|
|
|
|
$footer-text-color: $white;
|
|
|
|
$sub-footer-background-color: darken($primary, 10%);
|
|
|
|
$sub-footer-text-color: $white;
|
2018-12-09 07:21:01 +00:00
|
|
|
|
|
|
|
// Bootstrap
|
2021-08-07 11:54:56 +00:00
|
|
|
@import "bootstrap-variables";
|
|
|
|
@import "bootstrap/bootstrap-reboot";
|
|
|
|
@import "bootstrap/bootstrap-grid";
|
2020-08-23 10:01:06 +00:00
|
|
|
// @import 'bootstrap/bootstrap'; // Uncomment this line to import the entire Bootstrap library
|
|
|
|
|
2018-12-09 07:21:01 +00:00
|
|
|
// Libraries
|
2021-08-07 11:54:56 +00:00
|
|
|
@import "libraries/hamburgers/hamburgers";
|
2018-12-09 07:21:01 +00:00
|
|
|
|
|
|
|
// Components
|
2021-08-07 11:54:56 +00:00
|
|
|
@import "components/type";
|
|
|
|
@import "components/page";
|
|
|
|
@import "components/header";
|
|
|
|
@import "components/footer";
|
|
|
|
@import "components/sub-footer";
|
|
|
|
@import "components/logo";
|
|
|
|
@import "components/main-menu";
|
|
|
|
@import "components/main-menu-mobile";
|
|
|
|
@import "components/hamburger";
|
|
|
|
@import "components/buttons";
|
|
|
|
@import "components/call";
|
|
|
|
@import "components/title";
|
|
|
|
@import "components/content";
|
|
|
|
@import "components/intro";
|
|
|
|
@import "components/intro-image";
|
|
|
|
@import "components/strip";
|
|
|
|
@import "components/feature";
|
|
|
|
@import "components/social";
|
2021-08-09 11:02:59 +00:00
|
|
|
// @import "components/fonts"; // Uncomment this line to self host font
|
2018-12-09 07:21:01 +00:00
|
|
|
|
|
|
|
// Pages
|
2021-08-07 11:54:56 +00:00
|
|
|
@import "pages/page-home";
|
|
|
|
@import "pages/page-teams";
|
|
|
|
@import "pages/page-service";
|
2018-12-09 07:21:01 +00:00
|
|
|
|
2020-08-23 10:01:06 +00:00
|
|
|
body {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 1.2;
|
|
|
|
font-family: $font-family-base;
|
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 1.3;
|
|
|
|
}
|
|
|
|
}
|