2018-12-09 08:21:01 +01:00
|
|
|
---
|
|
|
|
# this ensures Jekyll reads the file to be transformed into CSS later
|
|
|
|
---
|
|
|
|
|
2020-08-23 12:01:06 +02:00
|
|
|
// Colors
|
|
|
|
$primary: #ec605b;
|
|
|
|
$secondary: #f88379;
|
|
|
|
$black: #2f2f41;
|
|
|
|
$white: #ffffff;
|
|
|
|
$white-offset: #fff6f8;
|
|
|
|
$steel: #5C5A5A;
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
$font-family-heading: 'Playfair Display', serif, -apple-system;
|
|
|
|
|
|
|
|
// Footer
|
|
|
|
$footer-background-color: $primary;
|
|
|
|
$footer-text-color: $white;
|
|
|
|
$sub-footer-background-color: darken($primary, 10%);
|
|
|
|
$sub-footer-text-color: $white;
|
2018-12-09 08:21:01 +01:00
|
|
|
|
|
|
|
// Bootstrap
|
|
|
|
@import 'bootstrap-variables';
|
2020-08-23 12:01:06 +02:00
|
|
|
@import 'bootstrap/bootstrap-reboot';
|
|
|
|
@import 'bootstrap/bootstrap-grid';
|
|
|
|
// @import 'bootstrap/bootstrap'; // Uncomment this line to import the entire Bootstrap library
|
|
|
|
|
2018-12-09 08:21:01 +01:00
|
|
|
|
|
|
|
// Libraries
|
|
|
|
@import 'libraries/hamburgers/hamburgers';
|
|
|
|
|
|
|
|
// Components
|
2020-08-23 12:01:06 +02:00
|
|
|
@import 'components/type';
|
2018-12-09 08:21:01 +01:00
|
|
|
@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';
|
2020-08-23 12:01:06 +02:00
|
|
|
@import 'components/call';
|
2018-12-09 08:21:01 +01:00
|
|
|
@import 'components/title';
|
|
|
|
@import 'components/content';
|
|
|
|
@import 'components/intro';
|
2020-08-23 12:01:06 +02:00
|
|
|
@import 'components/intro-image';
|
2018-12-09 08:21:01 +01:00
|
|
|
@import 'components/strip';
|
|
|
|
@import 'components/feature';
|
2020-08-23 12:01:06 +02:00
|
|
|
@import 'components/social';
|
2018-12-09 08:21:01 +01:00
|
|
|
|
|
|
|
// Pages
|
|
|
|
@import 'pages/home';
|
|
|
|
@import 'pages/team/team-summary';
|
|
|
|
@import 'pages/services/page-services-single';
|
|
|
|
|
2020-08-23 12:01:06 +02: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;
|
|
|
|
}
|
|
|
|
}
|