95 lines
3.3 KiB
SCSS
95 lines
3.3 KiB
SCSS
@import "partials/variables";
|
|
|
|
/**
|
|
* Web Application Prefix Apply For Making Owner Styles
|
|
*/
|
|
$app-brand-prefix : leo !default;
|
|
|
|
/**
|
|
* Blocks Layout Selectors
|
|
*/
|
|
$block-prefix : block!default;
|
|
$block-selector : block !default;
|
|
$block-heading-selector : title_block !default;
|
|
$block-content-selector : block_content !default;
|
|
|
|
//------- Path Variables
|
|
$image-path: "images/"!default;
|
|
$image-theme-base-path: "../img/"!default;
|
|
$image-base-path: "../../../img/"!default;
|
|
$image-module-path: "../../../img/icon/"!default;
|
|
$module-path: "../../../modules/"!default;
|
|
|
|
/***********************************************************************/
|
|
// some basic colors
|
|
|
|
$white: #FFFFFF !default;
|
|
$black: #000000 !default;
|
|
$blue: #6087D2 !default;
|
|
$wild-sand: #ffffff !default;
|
|
$silver: #f5f5f5 !default;
|
|
$red: #f7525a !default;
|
|
$red-light: #ff9999 !default;
|
|
$yellow-light: #fcd54c !default;
|
|
$nocolor: transparent!default;
|
|
|
|
// Variables Font Family
|
|
// ========================================================================
|
|
|
|
$font-family-tertiary : $font-family-base !default; // font for menu
|
|
$font-family-septenary : $font-family-base !default; // font for slideshow
|
|
$font-family-senary : $font-family-base !default; // font for Price
|
|
|
|
$font-icon: "FontAwesome" !default;
|
|
$font-icon-2: "Material Icons" !default;
|
|
$font-icon-3: "themify" !default;
|
|
|
|
//-------- Variables defined for Themes + Skins
|
|
|
|
$theme-color-default : #000 !default;
|
|
$theme-color-secondary : #333 !default; // Category page
|
|
$theme-color-tertiary: #999999 !default;
|
|
$theme-color-senary: #666666 !default; // Product Page
|
|
|
|
//-------- BORDERS
|
|
$border-color: #eee !default;
|
|
$main-border: 1px solid $border-color !default;
|
|
$main-border-hover: 1px solid $theme-color-default !default;
|
|
|
|
|
|
//-------- Variables RTL
|
|
$rtl-left : left;
|
|
$rtl-right : right;
|
|
$ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
|
|
// LAYOUT VARIABLES
|
|
// ========================================================================
|
|
|
|
// Header Nav
|
|
$header-nav-outside-bg: #282d35 !default;
|
|
$header-nav-bg: $nocolor !default;
|
|
$header-nav-color: $theme-color-tertiary !default;
|
|
$header-nav-font-size: $base-font-size !default;
|
|
$header-nav-height: 50px !default;
|
|
|
|
// Header Top
|
|
$header-top-outside-bg: $white !default;
|
|
$header-top-bg: $nocolor !default;
|
|
$header-top-color: $black !default;
|
|
|
|
// Footer
|
|
$footer-outside-bg: #25292f !default;
|
|
$footer-bg: $nocolor !default;
|
|
$footer-color: $theme-color-tertiary !default;
|
|
|
|
$footer-top-outside-bg: $white !default;
|
|
$footer-top-bg: $nocolor !default;
|
|
$footer-top-color: $footer-color !default;
|
|
|
|
$footer-center-outside-bg: $footer-outside-bg !default;
|
|
$footer-center-bg: $nocolor !default;
|
|
$footer-center-color: $footer-color !default;
|
|
|
|
$footer-bottom-outside-bg: #191c21 !default;
|
|
$footer-bottom-bg: $nocolor !default;
|
|
$footer-bottom-color: $footer-color !default; |