Adds custom consul settings

This commit is contained in:
decabeza
2018-04-09 18:02:37 +02:00
parent e3b92f1c0c
commit 771ef3d9e1
2 changed files with 39 additions and 4 deletions

View File

@@ -132,5 +132,3 @@ $(function(){
$(document).on('page:load', initialize_modules);
$(document).on('ajax:complete', initialize_modules);
});
$(function(){ $(document).foundation(); });

View File

@@ -10,7 +10,7 @@
// 1. CONSUL variables
// --------------------
$base-font-size: rem-calc(17);
$base-font-size: 17px;
$base-line: rem-calc(26);
$small-font-size: rem-calc(14);
$line-height: rem-calc(24);
@@ -65,10 +65,47 @@ $alert-bg: #f2dede;
$alert-border: #ebccd1;
$color-alert: #a94442;
// 2. Foundation settings overrides
// ---------------------------------
$black: #222;
$white: #fff;
$body-font-family: 'Source Sans Pro', 'Helvetica', 'Arial', sans-serif !important;
$header-font-family: $body-font-family;
$global-radius: rem-calc(3);
$button-radius: $global-radius;
$font-family-serif: Georgia, 'Times New Roman', Times, serif;
$header-sizes: (
small: (
'h1': 34,
'h2': 24,
'h3': 20,
'h4': 18,
'h5': 16,
'h6': 14,
),
medium: (
'h1': 44,
'h2': 34,
'h3': 24,
'h4': 19,
'h5': 16,
'h6': 13,
),
);
$small-font-size: rem-calc(14);
$abbr-underline: none;
$tab-background-active: $white;
$accordion-item-color: foreground($accordion-background, $text);
$accordion-content-color: foreground($accordion-background, $text);