[ADD] theme 14.0
This commit is contained in:
@@ -0,0 +1,60 @@
|
||||
//------------------------------------------------------------------------------//
|
||||
// Bootstrap
|
||||
//------------------------------------------------------------------------------//
|
||||
|
||||
// The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255.
|
||||
$yiq-contrasted-threshold: 200 !default;
|
||||
|
||||
// Spacing
|
||||
//
|
||||
// Control the default styling of most Bootstrap elements by modifying these
|
||||
// variables. Mostly focused on spacing.
|
||||
// You can add more entries to the $spacers map, should you need more variation.
|
||||
|
||||
$spacer: 1.25rem !default;
|
||||
|
||||
// Components
|
||||
//
|
||||
// Define common padding and border radius sizes and more.
|
||||
|
||||
$border-radius: 0 !default;
|
||||
$border-radius-lg: 0 !default;
|
||||
$border-radius-sm: 0 !default;
|
||||
|
||||
$box-shadow-sm: 0 0 .3125rem rgba(0,0,0,.25) !default;
|
||||
$box-shadow: 0 0 .3125rem rgba(0,0,0,.25) !default;
|
||||
$box-shadow-lg: 0 0 .3125rem rgba(0,0,0,.25) !default;
|
||||
|
||||
// Fonts
|
||||
//
|
||||
// Font, line-height, and color for body text, headings, and more.
|
||||
|
||||
// stylelint-enable value-keyword-case
|
||||
|
||||
$font-weight-normal: if(o-website-value('font-number') == 4, 300, 500) !default;
|
||||
|
||||
$headings-font-weight: 700 !default;
|
||||
|
||||
// Dropdowns
|
||||
//
|
||||
// Dropdown menu container and contents.
|
||||
|
||||
$dropdown-border-radius: .25rem !default;
|
||||
$dropdown-border-width: .0625rem !default;
|
||||
$dropdown-box-shadow: 0 .375rem 1.75em rgba(o-color('black'), .175) !default;
|
||||
|
||||
// Badges
|
||||
|
||||
$badge-padding-y: .3125rem !default;
|
||||
$badge-padding-x: .625rem !default;
|
||||
$badge-border-radius: .625rem !default;
|
||||
|
||||
// Breadcrumbs
|
||||
|
||||
$breadcrumb-padding-y: .5rem !default;
|
||||
$breadcrumb-padding-x: .9375rem !default;
|
||||
|
||||
$breadcrumb-margin-bottom: 1.25rem !default;
|
||||
|
||||
$breadcrumb-bg: o-color('white') !default;
|
||||
$breadcrumb-active-color: o-color('600') !default;
|
||||
@@ -0,0 +1,19 @@
|
||||
$s-banner-3-carosel-control-color: rgba(0, 0, 0, 0);
|
||||
$s-banner-3-padding: 15px;
|
||||
$s-banner-3-fa-color: o-color('alpha');
|
||||
$s-banner-3-carousel-height: 100vh;
|
||||
|
||||
@mixin s-banner-3-col-center-hook {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
padding-top: 60vh;
|
||||
@include media-breakpoint-down(sm) {
|
||||
padding-top: 25vh;
|
||||
}
|
||||
}
|
||||
|
||||
$s-big-picture-text-padding: 0;
|
||||
|
||||
$s-text-big-picture-padding: 0;
|
||||
|
||||
$s-timeline-company-color: $-gray-700;
|
||||
@@ -0,0 +1,182 @@
|
||||
//------------------------------------------------------------------------------//
|
||||
// Presets
|
||||
//------------------------------------------------------------------------------//
|
||||
|
||||
$o-website-values-palettes: (
|
||||
(
|
||||
// Header
|
||||
'header-font-size': (20 / 16) * 1rem,
|
||||
'header-template': 'hamburger-full',
|
||||
|
||||
// Font
|
||||
'font': 'Source Sans Pro',
|
||||
'headings-font': 'Source Sans Pro',
|
||||
'navbar-font': 'Source Sans Pro',
|
||||
'buttons-font': 'Source Sans Pro',
|
||||
|
||||
'link-underline': 'never',
|
||||
|
||||
// Footer
|
||||
'footer-template': 'headline',
|
||||
),
|
||||
);
|
||||
|
||||
//------------------------------------------------------------------------------//
|
||||
// Fonts
|
||||
//------------------------------------------------------------------------------//
|
||||
|
||||
$o-theme-font-configs: (
|
||||
'Source Sans Pro': (
|
||||
'family': ('Source Sans Pro', sans-serif),
|
||||
'url': 'Source+Sans+Pro:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Forum': (
|
||||
'family': ('Forum', cursive),
|
||||
'url': 'Forum:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Heebo': (
|
||||
'family': ('Heebo', sans-serif),
|
||||
'url': 'Heebo:300,300i,400,400i,600,600i',
|
||||
),
|
||||
'Buda': (
|
||||
'family': ('Buda', cursive),
|
||||
'url': 'Buda:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'PT Serif': (
|
||||
'family': ('PT Serif', serif),
|
||||
'url': 'PT+Serif:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Rajdhani': (
|
||||
'family': ('Rajdhani', sans-serif),
|
||||
'url': 'Rajdhani:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'EB Garamond': (
|
||||
'family': ('EB Garamond', serif),
|
||||
'url': 'EB+Garamond:300,300i,400,400i,700,700i',
|
||||
),
|
||||
);
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Colors
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
$o-color-palettes: (
|
||||
( // Palette 1
|
||||
'o-color-1': #000000,
|
||||
'o-color-2': #e4e4e4,
|
||||
'o-color-3': #00459e,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #444444,
|
||||
|
||||
'o-cc2-headings': 'o-color-4',
|
||||
'o-cc2-link': 'o-color-4',
|
||||
'o-cc2-btn-primary': 'o-color-4',
|
||||
|
||||
'o-cc4-headings': 'o-color-4',
|
||||
'o-cc4-btn-primary': 'o-color-4',
|
||||
'o-cc4-text': 'o-color-2',
|
||||
'o-cc4-link': 'o-color-4',
|
||||
|
||||
'o-cc5-text': 'o-color-2',
|
||||
'o-cc5-link': 'o-color-4',
|
||||
|
||||
'menu': 4,
|
||||
'footer': 4,
|
||||
'copyright': 4,
|
||||
),
|
||||
( // Palette 2
|
||||
'o-color-1': #d4ab0a,
|
||||
'o-color-2': #444444,
|
||||
'o-color-3': #ececec,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #000000,
|
||||
|
||||
'menu': 4,
|
||||
'footer': 1,
|
||||
'copyright': 2,
|
||||
),
|
||||
( // Palette 3
|
||||
'o-color-1': #005699,
|
||||
'o-color-2': #ac5e82,
|
||||
'o-color-3': #d8eff1,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #222222,
|
||||
|
||||
'o-cc5-link': #218bdf,
|
||||
'o-cc5-btn-primary': #218bdf,
|
||||
),
|
||||
( // Palette 4
|
||||
'o-color-1': #dc143c,
|
||||
'o-color-2': #7e2839,
|
||||
'o-color-3': #faf7e1,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #222222,
|
||||
),
|
||||
( // Palette 5
|
||||
'o-color-1': #32c0c9,
|
||||
'o-color-2': #cfcfcf,
|
||||
'o-color-3': #cee6e7,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #2e2e2e,
|
||||
|
||||
'footer': 1,
|
||||
),
|
||||
( // Palette 6
|
||||
'o-color-1': #e27b92,
|
||||
'o-color-2': #e4e4e4,
|
||||
'o-color-3': #465548,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #222222,
|
||||
|
||||
'o-cc2-headings': 'o-color-4',
|
||||
'o-cc5-text': 'o-color-2',
|
||||
|
||||
'menu': 2,
|
||||
'footer': 2,
|
||||
),
|
||||
);
|
||||
// Compatibility
|
||||
$o-theme-color-palettes: (
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #cdd0a2,
|
||||
'gamma': #b4bbb9,
|
||||
'delta': #242327,
|
||||
'epsilon': #957985,
|
||||
),
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #f4f1db,
|
||||
'gamma': #928371,
|
||||
'delta': #53453f,
|
||||
'epsilon': #c31737,
|
||||
),
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #d8eff1,
|
||||
'gamma': #0d75ac,
|
||||
'delta': #000f3d,
|
||||
'epsilon': #e07a6b,
|
||||
),
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #faf7e1,
|
||||
'gamma': #e3d6c6,
|
||||
'delta': #eed187,
|
||||
'epsilon': #dc733f,
|
||||
),
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #cfcfcf,
|
||||
'gamma': #2e2e2e,
|
||||
'delta': #000000,
|
||||
'epsilon': #32c0c9,
|
||||
),
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #aacfb0,
|
||||
'gamma': #4dac5e,
|
||||
'delta': #93ab12,
|
||||
'epsilon': #e62e3e,
|
||||
),
|
||||
);
|
||||
Reference in New Issue
Block a user