44024: simple search finalisation

This commit is contained in:
Lotte Hofstede
2017-09-05 17:09:17 +02:00
parent 29d04c06b9
commit 872984e505
16 changed files with 62 additions and 28 deletions

View File

@@ -0,0 +1,31 @@
/* Fonts */
$fa-font-path: "../assets/fonts";
/* Images */
$image-path: "../assets/images";
/* Colors */
$gray-base: #000 !default;
$gray-900: lighten($gray-base, 13.5%) !default; // #222
$gray-800: lighten($gray-base, 26.6%) !default; // #444
$gray-700: lighten($gray-base, 46.6%) !default; // #777
$gray-600: lighten($gray-base, 73.3%) !default; // #bbb
$gray-100: lighten($gray-base, 93.5%) !default; // #eee
/* Reassign color vars to semantic color scheme */
$blue: #2B4E72 !default;
$green: #94BA65 !default;
$cyan: #2790B0 !default;
$yellow: #EBBB54 !default;
$red: #CF4444 !default;
$theme-colors: (
primary: $blue,
secondary: $gray-700,
success: $green,
info: $cyan,
warning: $yellow,
danger: $red,
light: $gray-100,
dark: $blue
) !default;
/* Fonts */
$link-color: map-get($theme-colors, info) !default;