[ADD] theme 14.0
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
$s-banner-3-carousel-height: 500px;
|
||||
$s-banner-3-padding: 30px;
|
||||
$s-banner-3-h1-size: 50px;
|
||||
$s-banner-3-h2-size: 30px;
|
||||
|
||||
@mixin s-banner-3-row-hook {
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
height: auto;
|
||||
img {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@mixin s-banner-3-col-center-hook {
|
||||
text-align: left;
|
||||
width: 400px;
|
||||
height: auto;
|
||||
padding-bottom: 10px;
|
||||
margin-top: 100px;
|
||||
background-color: white;
|
||||
border: 15px solid rgba(255, 255, 255, .5);
|
||||
@include media-breakpoint-down(lg) {
|
||||
text-align: left !important;
|
||||
width: auto;
|
||||
margin-top: 0;
|
||||
}
|
||||
h1 {
|
||||
font-size: 40px;
|
||||
}
|
||||
h2 {
|
||||
font-size: 30px;
|
||||
}
|
||||
}
|
||||
@mixin s-banner-3-hook {
|
||||
border: 15px solid white;
|
||||
border-left-width: 50px;
|
||||
border-right-width: 50px;
|
||||
@include media-breakpoint-down(sm) {
|
||||
border-width: 10px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,129 @@
|
||||
// Colors
|
||||
$o-color-palettes: (
|
||||
(
|
||||
'o-color-1': #a1a52f,
|
||||
'o-color-2': #66555c,
|
||||
'o-color-3': #f7f7f7,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #242327,
|
||||
|
||||
'footer': 4,
|
||||
'copyright': 4,
|
||||
),
|
||||
(
|
||||
'o-color-1': #679b96,
|
||||
'o-color-2': #345552,
|
||||
'o-color-3': #e9e9e9,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #1e222f,
|
||||
|
||||
'footer': 1,
|
||||
'copyright': 4,
|
||||
),
|
||||
(
|
||||
'o-color-1': #df699c,
|
||||
'o-color-2': #590046,
|
||||
'o-color-3': #dbe8ed,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #222222,
|
||||
|
||||
'footer': 1,
|
||||
'copyright': 4,
|
||||
),
|
||||
(
|
||||
'o-color-1': #b29964,
|
||||
'o-color-2': #62624c,
|
||||
'o-color-3': #f5f4f4,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #333333,
|
||||
|
||||
'footer': 1,
|
||||
'copyright': 4,
|
||||
),
|
||||
(
|
||||
'o-color-1': #1ad68f,
|
||||
'o-color-2': #2e2e2e,
|
||||
'o-color-3': #f7f7f7,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #000000,
|
||||
|
||||
'footer': 1,
|
||||
'copyright': 4,
|
||||
),
|
||||
(
|
||||
'o-color-1': #cfd744,
|
||||
'o-color-2': #3d504a,
|
||||
'o-color-3': #f0f1f1,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #112625,
|
||||
|
||||
'menu': 4,
|
||||
'footer': 4,
|
||||
'copyright': 5,
|
||||
),
|
||||
);
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Fonts
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
$o-theme-h1-font-size-multiplier: (25 / 12);
|
||||
$o-theme-h2-font-size-multiplier: (18 / 12);
|
||||
$o-theme-h3-font-size-multiplier: (16 / 12);
|
||||
$o-theme-h4-font-size-multiplier: (14 / 12);
|
||||
$o-theme-h5-font-size-multiplier: 1;
|
||||
$o-theme-h6-font-size-multiplier: 1;
|
||||
|
||||
$o-theme-font-configs: (
|
||||
'Heebo': (
|
||||
'family': ('Heebo', sans-serif),
|
||||
'url': 'Heebo:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Rajdhani': (
|
||||
'family': ('Rajdhani', sans-serif),
|
||||
'url': 'Rajdhani:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Raleway': (
|
||||
'family': ('Raleway', sans-serif),
|
||||
'url': 'Raleway:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Roboto': (
|
||||
'family': ('Roboto', sans-serif),
|
||||
'url': 'Roboto:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Source Sans Pro': (
|
||||
'family': ('Source Sans Pro', sans-serif),
|
||||
'url': 'Source+Sans+Pro:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Ubuntu': (
|
||||
'family': ('Ubuntu', sans-serif),
|
||||
'url': 'Ubuntu:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Poppins': (
|
||||
'family': ('Poppins', sans-serif),
|
||||
'url': 'Poppins:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Questrial': (
|
||||
'family': ('Questrial', sans-serif),
|
||||
'url': 'Questrial:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Muli': (
|
||||
'family': ('Muli', sans-serif),
|
||||
'url': 'Muli:300,300i,400,400i,700,700i',
|
||||
),
|
||||
);
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Website customizations
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
$o-website-values-palettes: (
|
||||
(
|
||||
'font': 'Questrial',
|
||||
'headings-font': 'Questrial',
|
||||
'navbar-font': 'Questrial',
|
||||
'buttons-font': 'Questrial',
|
||||
'header-template': 'default',
|
||||
'footer-template': 'descriptive',
|
||||
),
|
||||
);
|
||||
Reference in New Issue
Block a user