-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update css/js and add custom variables for black, blue and yellow layout
- Loading branch information
Showing
8 changed files
with
707 additions
and
229 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
/**** | ||
**** mate theme files / mate_variables | ||
**** overrides materialize variables | ||
**** | ||
*/ | ||
|
||
/* | ||
* please do not edit this file. | ||
* | ||
* use _custom_variables.scss for update safe overwrites | ||
*/ | ||
|
||
$font1: 'Lato Light'; | ||
$font2: 'Old Standard'; | ||
$font3: 'Lato Regular'; | ||
|
||
$mateColor1: #AB9C89; | ||
$mateColor2: #C7A47A; | ||
$mateColor3: #7F684F; | ||
$mateColor4: #211F20; | ||
$mateColor6: #323232; | ||
$mateColorWhite: #fff; | ||
$mateColorBlack: #211F20; | ||
$pageBackground: $mateColorBlack; | ||
|
||
/* | ||
* colors | ||
*/ | ||
|
||
$primary-color: $mateColor2; | ||
$secondary-color: $mateColor3; | ||
$text-color: $mateColorWhite; | ||
|
||
/* | ||
* mate theme specific variables | ||
*/ | ||
|
||
/* Boxen */ | ||
$boxes-background: #080808; | ||
$boxes-text-color: $mateColorWhite; | ||
|
||
/* header image headline */ | ||
$headerHeadlineBackground: rgba(199, 164, 122, 0.8); | ||
$headerHeadlineColor: #fff; | ||
|
||
/* Links */ | ||
$primary-link-font-color: $mateColor2; | ||
$primary-link-hover-font-color: $mateColor3; | ||
|
||
/* Header Navigation */ | ||
$navbar-bg-color: $mateColorWhite; | ||
$navbar-color: $mateColorBlack; | ||
$navbar-active-color: $mateColor2; | ||
$navbar-dropdown-hover-bg-color: $mateColor1; | ||
$navbar-dropdown-hover-color: $mateColorWhite; | ||
$navbar-dropdown-bg: $mateColorWhite; | ||
$navbar-dropdown-color: $mateColorBlack; | ||
$navbar-stuck-bg-color: rgba(199, 164, 122, 0.8); | ||
$navbar-stuck-color: $mateColorWhite; | ||
$navbar-stuck-active-color: $mateColor3; | ||
$navbar-stuck-dropdown-hover-bg-color: rgba(255,255,255,0.5); | ||
$navbar-stuck-dropdown-hover-color: $mateColorBlack; | ||
$navbar-stuck-dropdown-color: $mateColorWhite; | ||
$navbar-stuck-dropdown-bg: $navbar-stuck-bg-color; | ||
|
||
/* Buttons */ | ||
$button-flat-color: $mateColorWhite; | ||
$button-floating-background: $mateColor2; | ||
$button-floating-background-hover: $mateColor3; | ||
|
||
/* Download and FAQ Elements */ | ||
$download-faqlist-background-odd: $boxes-background; | ||
$download-faqlist-color-odd: $mateColorWhite; | ||
$download-faqlist-color-odd-hover: #f2f2f2; | ||
|
||
$download-faqlist-background-even: $mateColor6; | ||
$download-faqlist-color-even: $mateColorWhite; | ||
$download-faqlist-color-even-hover: #f2f2f2; | ||
|
||
/* Footer */ | ||
$footer-text-color: $mateColorWhite; | ||
$footer-headline-border-color: $footer-text-color; | ||
$footer-secondary-bg-color: $secondary-color; | ||
|
||
/* News Slider */ | ||
$slider-background: $mateColor2; | ||
$slider-subheadline-color: #fff; | ||
$slider-headline-color: #fff; | ||
$slider-teaser-color: #fff; | ||
|
||
$slider-button-background: $mateColor1; | ||
$slider-button-color: $mateColor3; | ||
$slider-button-color-hover: #fff; | ||
$slider-button-background-hover: $mateColor3; | ||
|
||
$slider-arrows-background: $mateColor4; | ||
$slider-arrows-border-color: $mateColor2; | ||
$slider-arrows-color: #fff; | ||
|
||
$slider-navigation-background: $mateColor2; | ||
$slider-navigation-subheadline-color: $mateColorWhite; | ||
$slider-navigation-headline-color: $mateColorWhite; | ||
$slider-navigation-active-background: $mateColor1; | ||
$slider-navigation-active-subheadline-color: #fff; | ||
$slider-navigation-active-headline-color: #fff; | ||
$slider-navigation-hover-background: $mateColor1; | ||
$slider-navigation-hover-subheadline-color: #fff; | ||
$slider-navigation-hover-headline-color: #fff; | ||
$slider-navigation-border-color: $mateColor1; | ||
|
||
/* Content Box */ | ||
$contentbox-first-background: $boxes-background; | ||
$contentbox-first-color: $boxes-text-color; | ||
$contentbox-second-background: $mateColor6; | ||
$contentbox-second-color: $boxes-text-color; | ||
|
||
/* Tables */ | ||
$table-odd-background: $boxes-background; | ||
$table-even-background: $mateColor6; | ||
$table-border-color: #3c3c3c; | ||
|
||
/* Accordion */ | ||
$accordion-headline-background: $mateColor2; | ||
$accordion-headline-color: $mateColorWhite; | ||
$accordion-content-background: $boxes-background; | ||
$accordion-content-color: $mateColorWhite; | ||
$accordion-border-color: $boxes-background; |
Oops, something went wrong.