first commit
This commit is contained in:
20
admin-kalsport/themes/default/scss/modules/_colors.scss
Normal file
20
admin-kalsport/themes/default/scss/modules/_colors.scss
Normal file
@@ -0,0 +1,20 @@
|
||||
// PrestaShop Colors
|
||||
$greenPrestashop: #8bc954;
|
||||
$pinkPrestashop: #f01778;
|
||||
|
||||
// Color Me SASS v1.3 by Richard Bray => http://richbray.me/cms/
|
||||
@import "colors/reds";
|
||||
@import "colors/peaches";
|
||||
@import "colors/tans";
|
||||
@import "colors/oranges";
|
||||
@import "colors/ambers";
|
||||
@import "colors/yellows";
|
||||
@import "colors/limes";
|
||||
@import "colors/greens";
|
||||
@import "colors/turquoise";
|
||||
@import "colors/blues";
|
||||
@import "colors/purples";
|
||||
@import "colors/pinks";
|
||||
@import "colors/browns";
|
||||
@import "colors/whites";
|
||||
@import "colors/grays";
|
||||
116
admin-kalsport/themes/default/scss/modules/_mixins.scss
Normal file
116
admin-kalsport/themes/default/scss/modules/_mixins.scss
Normal file
@@ -0,0 +1,116 @@
|
||||
// Avatar
|
||||
|
||||
@mixin avatar($size, $radius) {
|
||||
display: inline-block;
|
||||
width: $size;
|
||||
height: $size;
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
-webkit-border-radius: $radius;
|
||||
border-radius: $radius;
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: $size / 3 * 2;
|
||||
line-height: $size;
|
||||
}
|
||||
// Breakpoint viewport sizes and media queries.
|
||||
//
|
||||
// Breakpoints are defined as a map of (name: minimum width), order from small to large:
|
||||
//
|
||||
// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)
|
||||
//
|
||||
// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.
|
||||
|
||||
// Name of the next breakpoint, or null for the last breakpoint.
|
||||
//
|
||||
// >> breakpoint-next(sm)
|
||||
// md
|
||||
// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
|
||||
// md
|
||||
// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))
|
||||
// md
|
||||
}
|
||||
@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {
|
||||
$n: index($breakpoint-names, $name);
|
||||
|
||||
@return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);
|
||||
|
||||
// Minimum breakpoint width. Null for the smallest (first) breakpoint.
|
||||
//
|
||||
// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
|
||||
// 576px
|
||||
}
|
||||
@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {
|
||||
$min: map-get($breakpoints, $name);
|
||||
|
||||
@return if($min != 0, $min, null);
|
||||
|
||||
// Maximum breakpoint width. Null for the largest (last) breakpoint.
|
||||
// The maximum value is calculated as the minimum of the next one less 0.1.
|
||||
//
|
||||
// >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
|
||||
// 767px
|
||||
}
|
||||
@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {
|
||||
$next: breakpoint-next($name, $breakpoints);
|
||||
|
||||
@return if($next, breakpoint-min($next, $breakpoints) - 0.0625em, null);
|
||||
|
||||
// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash infront.
|
||||
// Useful for making responsive utilities.
|
||||
//
|
||||
// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
|
||||
// "" (Returns a blank string)
|
||||
// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
|
||||
// "-sm"
|
||||
}
|
||||
@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {
|
||||
@return if(breakpoint-min($name, $breakpoints) == null, "", "-#{$name}");
|
||||
}
|
||||
|
||||
// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.
|
||||
// Makes the @content apply to the given breakpoint and wider.
|
||||
@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {
|
||||
$min: breakpoint-min($name, $breakpoints);
|
||||
|
||||
@if $min {
|
||||
@media (min-width: $min) {
|
||||
@content;
|
||||
}
|
||||
}@else {
|
||||
@content;
|
||||
}
|
||||
}// Media of at most the maximum breakpoint width. No query for the largest breakpoint.
|
||||
// Makes the @content apply to the given breakpoint and narrower.
|
||||
@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {
|
||||
$max: breakpoint-max($name, $breakpoints);
|
||||
|
||||
@if $max {
|
||||
@media (max-width: $max) {
|
||||
@content;
|
||||
}
|
||||
}@else {
|
||||
@content;
|
||||
}
|
||||
}// Media that spans multiple breakpoint widths.
|
||||
// Makes the @content apply between the min and max breakpoints
|
||||
@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {
|
||||
@include media-breakpoint-up($lower, $breakpoints) {
|
||||
@include media-breakpoint-down($upper, $breakpoints) {
|
||||
@content;
|
||||
}
|
||||
// Media between the breakpoint's minimum and maximum widths.
|
||||
// No minimum for the smallest breakpoint, and no maximum for the largest one.
|
||||
// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.
|
||||
}
|
||||
}
|
||||
@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {
|
||||
@include media-breakpoint-between($name, $name, $breakpoints) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
182
admin-kalsport/themes/default/scss/modules/_variables.scss
Normal file
182
admin-kalsport/themes/default/scss/modules/_variables.scss
Normal file
@@ -0,0 +1,182 @@
|
||||
// PrestaShop Admin Theme Colors
|
||||
$main-color: #363a41 !default;
|
||||
$primary-color: #25b9d7 !default;
|
||||
$primary-light-color: #7cd5e7 !default;
|
||||
$secondary-color: $greenPrestashop !default;
|
||||
$bg-content-color: #eff1f2 !default;
|
||||
|
||||
$contrasted-dark-default: #333;
|
||||
$contrasted-light-default: #fff;
|
||||
$contrasted-lightness-threshold: 10%;
|
||||
|
||||
$bg-page-head-color: $secondary-color;
|
||||
$bg-panel-heading-color: hsl(hue($secondary-color), 10, 90);
|
||||
|
||||
$badge-notif-color: $greenPrestashop;
|
||||
$brand-addons: $pinkPrestashop;
|
||||
|
||||
$font-family-mono: "Open Sans", helvetica, arial, sans-serif;
|
||||
|
||||
// FontAwesome icons
|
||||
$icon-font-family: "FontAwesome";
|
||||
$fa-css-prefix: icon;
|
||||
$icon-size-base: 14px;
|
||||
|
||||
// Tooltips
|
||||
$tooltip-opacity: 1;
|
||||
$tooltip-bg: #555;
|
||||
$tooltip-max-width: 250px;
|
||||
|
||||
// Bootstrap variables
|
||||
$gray-darker: lighten(#000, 13.5%);
|
||||
$gray-dark: lighten(#000, 20%);
|
||||
$gray: lighten(#000, 33.5%);
|
||||
$gray-light: lighten(#000, 60%);
|
||||
$gray-lighter: lighten(#000, 93.5%);
|
||||
$gray-background: #eaebec;
|
||||
|
||||
// Cards
|
||||
$card-border-color: #dbe6e9;
|
||||
$card-icon-color: #6c868e;
|
||||
|
||||
// Brand colors
|
||||
$brand-primary: $primary-color !default;
|
||||
|
||||
$brand-success: #72c279 !default;
|
||||
$brand-warning: #fbbb22 !default;
|
||||
$brand-danger: #e08f95 !default;
|
||||
$brand-info: #25b9d7 !default;
|
||||
|
||||
$alert-success-bg: #cbf2d4 !default;
|
||||
$alert-success-text: #363a41 !default;
|
||||
$alert-success-border: #53d572 !default;
|
||||
|
||||
$alert-info-bg: #beeaf3 !default;
|
||||
$alert-info-text: #363a41 !default;
|
||||
$alert-info-border: #25b9d7 !default;
|
||||
|
||||
$alert-warning-bg: #fffbd3 !default;
|
||||
$alert-warning-text: #363a41 !default;
|
||||
$alert-warning-border: #fab000 !default;
|
||||
|
||||
$alert-danger-bg: #fbc6c3 !default;
|
||||
$alert-danger-text: #363a41 !default;
|
||||
$alert-danger-border: #f44336 !default;
|
||||
|
||||
// Sidebar
|
||||
$sidebar-menu-color: #bebebe !default;
|
||||
$sidebar-menu-active-color: #fff !default;
|
||||
$sidebar-menu-hover-color: #fff !default;
|
||||
$sidebar-menu-bg-hover-color: #282b30;
|
||||
|
||||
// Toolbar
|
||||
$toolbar-buttons-color: #2eacce;
|
||||
$toolbar-buttons-hover-color: #40c9ed;
|
||||
|
||||
// Scaffolding
|
||||
$body-bg: $bg-content-color;
|
||||
$text-color: $gray;
|
||||
|
||||
// Typography
|
||||
$FontPathOpenSans: "../node_modules/open-sans-fonts/open-sans";
|
||||
$url-font-content-name: "Open Sans" !default;
|
||||
$url-font-headings-name: "Open Sans" !default;
|
||||
$font-family-sans-serif: $url-font-content-name, helvetica, arial, sans-serif;
|
||||
$headings-font-family: $url-font-headings-name, helvetica, arial, sans-serif;
|
||||
$font-size-base: 12px;
|
||||
$line-height-base: 1.428571429;
|
||||
$line-height-computed: floor($font-size-base * $line-height-base);
|
||||
$headings-font-weight: 400;
|
||||
|
||||
// Components
|
||||
$padding-base-vertical: 8px;
|
||||
$padding-base-horizontal: 16px;
|
||||
$border-radius-base: 4px;
|
||||
|
||||
// Tables
|
||||
|
||||
// $table-bg: transparent overall background-color
|
||||
$table-bg-accent: #f9f9f9;
|
||||
$table-bg-hover: #edf7fb;
|
||||
|
||||
// Buttons
|
||||
$btn-default-color: $main-color;
|
||||
$btn-default-bg: #fff;
|
||||
$btn-default-border: #bbcdd2;
|
||||
$btn-primary-color: #fff;
|
||||
$btn-primary-bg: $primary-color;
|
||||
$btn-primary-border: $primary-color;
|
||||
$btn-primary-active-bg: #21a6c1;
|
||||
|
||||
$btn-secondary-hover: #889da2;
|
||||
$btn-secondary-active-color: #889da2;
|
||||
$btn-secondary-color: #fff;
|
||||
|
||||
// Forms
|
||||
$input-bg: #fff;
|
||||
$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 6);
|
||||
$input-group-addon-bg: #f5f8f9;
|
||||
$input-border: #bbcdd2;
|
||||
$input-focus-background: #f4fcfd;
|
||||
$input-focus-border: $primary-color;
|
||||
// Dropdowns
|
||||
$dropdown-link-hover-color: #fff;
|
||||
$dropdown-link-hover-bg: $brand-primary;
|
||||
|
||||
// Grid system
|
||||
$grid-gutter-width: 10px;
|
||||
|
||||
// Basics of a navbar
|
||||
$navbar-height: 40px;
|
||||
$well-bg: #fcfdfe;
|
||||
|
||||
// Media queries breakpoints
|
||||
// Tiny screen / phone
|
||||
$screen-tiny: 480px;
|
||||
$screen-phone: $screen-tiny;
|
||||
|
||||
// Small screen / tablet
|
||||
$screen-small: 768px;
|
||||
$screen-tablet: $screen-small;
|
||||
|
||||
// Medium screen / desktop
|
||||
$screen-medium: 992px;
|
||||
$screen-desktop: $screen-medium;
|
||||
|
||||
// So media queries don't overlap when required, provide a maximum
|
||||
$screen-small-max: ($screen-medium - 1);
|
||||
$screen-tablet-max: $screen-small-max;
|
||||
|
||||
// Large screen / wide desktop
|
||||
$screen-large: 1200px;
|
||||
$screen-large-desktop: $screen-large;
|
||||
|
||||
// Container sizes
|
||||
// Small screen / tablet
|
||||
$container-tablet: 728px;
|
||||
|
||||
// Medium screen / desktop
|
||||
$container-desktop: 940px;
|
||||
|
||||
// Large screen / wide desktop
|
||||
$container-large-desktop: 1170px;
|
||||
|
||||
// Menu
|
||||
$gray-dark-menu: #363a41;
|
||||
$widthSidebarNav: 210px;
|
||||
$paddingLeftPageClosed: 4.0625rem;
|
||||
$paddingLeftMobile: 0.625rem;
|
||||
$widthSidebarSubmenu: 200px;
|
||||
$menu-item-size: 34px;
|
||||
$min-height: 950px;
|
||||
$gray-dark-text: #bebebe;
|
||||
$gray-dark-text-hover: #fff;
|
||||
$size-navbar-width: 13.13rem;
|
||||
$size-navbar-width-mini: 3.125rem;
|
||||
$size-header-height: 2.5rem;
|
||||
$header-mobile-padding-y: 0.625rem;
|
||||
$medium-gray: #6c868e;
|
||||
$gray-medium: $medium-gray;
|
||||
|
||||
// use rems to ensure homogeneity on all zoom scales
|
||||
$grid-breakpoints: (xs: 0, sm: 34em, md: 48em, lg: 64em, xl: 81.25em);
|
||||
@@ -0,0 +1,25 @@
|
||||
// Ambers 9
|
||||
// -------------------------
|
||||
|
||||
$amber: #f90 !default;
|
||||
$amberDark: #995c00 !default;
|
||||
$amberDarker: #4c2e00 !default;
|
||||
$amberLight: #ffc266 !default;
|
||||
$amberLighter: #ffd699 !default;
|
||||
$amberDull: #d68e22 !default;
|
||||
$amberDuller: #b38642 !default;
|
||||
$amberBright: #ffb84d !default;
|
||||
$amberBrighter: #ffd391 !default;
|
||||
|
||||
|
||||
// * * * Premium * * *
|
||||
// -------------------------
|
||||
|
||||
|
||||
//Dulux 4
|
||||
|
||||
$amberQueen: #f1995a !default;
|
||||
$amberFlame: #f9b465 !default;
|
||||
$amberSands: #f7a955 !default;
|
||||
$amberBark: #ffb448 !default;
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
// Blue 32
|
||||
// -------------------------
|
||||
|
||||
//Defaults
|
||||
|
||||
$blue: #06f !default;
|
||||
$blueDark: #003d99 !default;
|
||||
$blueDarker: #002966 !default;
|
||||
$blueLight: #4d94ff !default;
|
||||
$blueLighter: #80b2ff !default;
|
||||
$blueDull: #06c !default;
|
||||
$blueDuller: #369 !default;
|
||||
$blueBright: #39f !default;
|
||||
$blueBrighter: #70b8ff !default;
|
||||
|
||||
|
||||
//Variations
|
||||
|
||||
$blueAirforce: #5d8aa8 !default;
|
||||
$blueAzure: #007fff !default;
|
||||
$blueBaby: #89cff0 !default;
|
||||
$blueFrench: #318ce7 !default;
|
||||
$blueCeleste: #b2ffff !default;
|
||||
$blueColumbia: #75b2dd !default;
|
||||
$blueSky: #73c2fb !default;
|
||||
$blueMidnight: #191970 !default;
|
||||
$blueNavy: #000080 !default;
|
||||
$blueRoyal: #4169e1 !default;
|
||||
$blueSapphire: #0f52ba !default;
|
||||
$blueSteel: #4682b4 !default;
|
||||
|
||||
//Brands
|
||||
|
||||
$blueBehance: #053eff !default;
|
||||
$blueDropbox: #3d9ae8 !default;
|
||||
$blueFacebook: #3b5998 !default;
|
||||
$blueFlickr: #0063dc !default;
|
||||
$blueFoursquare: #25a0ca !default;
|
||||
$blueLinkedIn: #0e76a8 !default;
|
||||
$blueRdio: #008fd5 !default;
|
||||
$blueSkype: #00aff0 !default;
|
||||
$blueTwitter: #00a0d1 !default;
|
||||
$blueVimeo: #86c9ef !default;
|
||||
$blueVirb: #06afd8 !default;
|
||||
|
||||
// * * * Premium * * *
|
||||
// -------------------------
|
||||
|
||||
|
||||
//Dulux 13
|
||||
|
||||
$blueSea: #668ebf !default;
|
||||
$blueBabe: #96b5d4 !default;
|
||||
$blueReflection: #9ab7b3 !default;
|
||||
$blueHoliday: #0097c8 !default;
|
||||
$blueStonewash: #648e9c !default;
|
||||
$blueCyan: #36a0ca !default;
|
||||
$blueSapphire: #2c405b !default;
|
||||
$blueLake: #476a88 !default;
|
||||
$blueBreton: #4d5965 !default;
|
||||
$blueSeduction: #4c84b8 !default;
|
||||
$blueCloud: #6883b6 !default;
|
||||
|
||||
|
||||
//Zurb Foundation 1
|
||||
|
||||
$blueZurb: #2ba6cb !default;
|
||||
|
||||
@@ -0,0 +1,45 @@
|
||||
// Browns 21
|
||||
// -------------------------
|
||||
|
||||
//Defaults
|
||||
|
||||
$brown: #630 !default;
|
||||
$brownDark: #472400 !default;
|
||||
$brownDarker: #331a00 !default;
|
||||
$brownLight: #754719 !default;
|
||||
$brownLighter: #855c33 !default;
|
||||
$brownDull: #664728 !default;
|
||||
$brownDuller: #5e4c3a !default;
|
||||
$brownBright: #930 !default;
|
||||
$brownBrighter: #a34719 !default;
|
||||
|
||||
//Variations
|
||||
|
||||
$brownBeaver: #9f8170 !default;
|
||||
$brownBistre: #3d2b1f !default;
|
||||
$brownBole: #79443b !default;
|
||||
$brownBronze: #cd7f32 !default;
|
||||
$brownBurnt: #8a3324 !default;
|
||||
$brownCamel: #c19a6b !default;
|
||||
$brownChestnut: #954535 !default;
|
||||
$brownChocolate: #7b3f00 !default;
|
||||
$brownCoffee: #6f4e37 !default;
|
||||
$brownCopper: #b87333 !default;
|
||||
$brownMahogany: #c04000 !default;
|
||||
$brownSepia: #704214 !default;
|
||||
|
||||
|
||||
// * * * Premium * * *
|
||||
// -------------------------
|
||||
|
||||
|
||||
//Dulux 8
|
||||
|
||||
$brownCaramel: #ac9d8e !default;
|
||||
$brownPraline: #9f8e82 !default;
|
||||
$brownTruffle: #8e796b !default;
|
||||
$brownExotic: #8e766c !default;
|
||||
$brownBitter: #82695f !default;
|
||||
$brownCocoa: #7e6660 !default;
|
||||
$brownMocha: #7f6968 !default;
|
||||
$brownClay: #d7c3b8 !default;
|
||||
@@ -0,0 +1,13 @@
|
||||
// Gray 10
|
||||
// -------------------------
|
||||
|
||||
$grayAsh: #b2beb5 !default;
|
||||
$grayBattleship: #848482 !default;
|
||||
$grayCadet: #91a3b0 !default;
|
||||
$grayCharcoal: #36454f !default;
|
||||
$grayCool: #8c92ac !default;
|
||||
$grayGunmetal: #423732 !default;
|
||||
$graySilver: #c0c0c0 !default;
|
||||
$graySlate: #708090 !default;
|
||||
$grayTaupe: #8b8589 !default;
|
||||
$grayTimberwolf: #dbd7d2 !default;
|
||||
@@ -0,0 +1,59 @@
|
||||
// Green 27
|
||||
// -------------------------
|
||||
|
||||
//Defaults
|
||||
|
||||
$green: #3c3 !default;
|
||||
$greenDark: #1f7a1f !default;
|
||||
$greenDarker: #0f3d0f !default;
|
||||
$greenLight: #5cd65c !default;
|
||||
$greenLighter: #85e085 !default;
|
||||
$greenDull: #093 !default;
|
||||
$greenDuller: #428057 !default;
|
||||
$greenBright: #6f3 !default;
|
||||
$greenBrighter: #9f6 !default;
|
||||
|
||||
//Variations
|
||||
|
||||
$greenApple: #8db600 !default;
|
||||
$greenAsparagus: #7ba05b !default;
|
||||
$greenOlive: #556b2f !default;
|
||||
$greenFern: #4f7942 !default;
|
||||
$greenForest: #228b22 !default;
|
||||
$greenHunter: #355e3b !default;
|
||||
$greenMint: #3eb489 !default;
|
||||
$greenOffice: #008000 !default;
|
||||
$greenSea: #2e8b57 !default;
|
||||
$greenSpring: #a7fc00 !default;
|
||||
$greenTeal: #008080 !default;
|
||||
|
||||
//Brands
|
||||
|
||||
$greenEvernote: #5ba525 !default;
|
||||
$greenForrst: #5b9a68 !default;
|
||||
$greenGroupon: #82b548 !default;
|
||||
$greenKickstarter: #87c442 !default;
|
||||
$greenNvidia: #76b900 !default;
|
||||
$greenSpotify: #81b71a !default;
|
||||
$greenZerply: #9dcc7a !default;
|
||||
|
||||
|
||||
// * * * Premium * * *
|
||||
// -------------------------
|
||||
|
||||
|
||||
//Brands 8
|
||||
|
||||
$greenSpa: #00aa8f !default;
|
||||
$greenFalls: #33ad7b !default;
|
||||
$greenGranada: #57b176 !default;
|
||||
$greenGarland: #68af6b !default;
|
||||
$greenParrot: #75b65d !default;
|
||||
$greenCreek: #89b555 !default;
|
||||
$greenKiwi: #98b641 !default;
|
||||
$greenLime: #b6bf3c !default;
|
||||
|
||||
|
||||
//Zurb Foundation 1
|
||||
|
||||
$greenZurb: #5da423 !default;
|
||||
@@ -0,0 +1,12 @@
|
||||
// Lime 9
|
||||
// -------------------------
|
||||
|
||||
$lime: #b8e62e !default;
|
||||
$limeDark: #7a991f !default;
|
||||
$limeDarker: #3d4c0f !default;
|
||||
$limeLight: #d6ff5c !default;
|
||||
$limeLighter: #e0ff85 !default;
|
||||
$limeDull: #a6c44b !default;
|
||||
$limeDuller: #94a856 !default;
|
||||
$limeBright: #bfff00 !default;
|
||||
$limeBrighter: #d7ff5e !default;
|
||||
@@ -0,0 +1,45 @@
|
||||
// Oranges 14
|
||||
// -------------------------
|
||||
|
||||
|
||||
//Default
|
||||
|
||||
$orange: #f60 !default;
|
||||
$orangeDark: #993d00 !default;
|
||||
$orangeDarker: #4c1f00 !default;
|
||||
$orangeLight: #ff944d !default;
|
||||
$orangeLighter: #ffc299 !default;
|
||||
$orangeDull: #c96b2c !default;
|
||||
$orangeDuller: #a16740 !default;
|
||||
$orangeBright: #f93 !default;
|
||||
|
||||
//Brands
|
||||
|
||||
$orangeAmazon: #e47911 !default;
|
||||
$orangeBlogger: #fc4f08 !default;
|
||||
$orangeGrooveshark: #f77f00 !default;
|
||||
$orangeHackerNews: #f60 !default;
|
||||
$orangeSoundCloud: #f70 !default;
|
||||
$orangeUbuntu: #dd4814 !default;
|
||||
|
||||
|
||||
// * * * Premium * * *
|
||||
// -------------------------
|
||||
|
||||
|
||||
//Dulux 10
|
||||
|
||||
$orangeAddvocate: #ff6138 !default;
|
||||
$orangeGinger: #995039 !default;
|
||||
$orangeAutumn: #be5f37 !default;
|
||||
$orangeDawn: #e47c6c !default;
|
||||
$orangeBongo: #e66e5b !default;
|
||||
$orangeMango: #e98762 !default;
|
||||
$orangeCoral: #ec926f !default;
|
||||
$orangePaprika: #cf5141 !default;
|
||||
$orangeAfrican: #db6335 !default;
|
||||
$orangeFlame: #d46946 !default;
|
||||
$orangeAuburn: #dd8251 !default;
|
||||
$orangeHarvest: #ee8c4d !default;
|
||||
$orangeSands: #eb8830 !default;
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
// Peach 9
|
||||
// -------------------------
|
||||
|
||||
$peach: #ff5050 !default;
|
||||
$peachDark: #993030 !default;
|
||||
$peachDarker: #4c1818 !default;
|
||||
$peachLight: #ff9696 !default;
|
||||
$peachLighter: #ffcaca !default;
|
||||
$peachDull: #d67272 !default;
|
||||
$peachDuller: #ba8c8c !default;
|
||||
$peachBright: #ff9c9c !default;
|
||||
$peachBrighter: #ffbfbf !default;
|
||||
|
||||
|
||||
// * * * Premium * * *
|
||||
// -------------------------
|
||||
|
||||
|
||||
//Dulux 2
|
||||
|
||||
$peachSorbet: #f5d8d2 !default;
|
||||
$peachShimmer: #fdefe2 !default;
|
||||
@@ -0,0 +1,55 @@
|
||||
// Pinks 25
|
||||
// -------------------------
|
||||
|
||||
//Defaults
|
||||
|
||||
$pink: #f3c !default;
|
||||
$pinkDark: #b2248f !default;
|
||||
$pinkDarker: #661452 !default;
|
||||
$pinkLight: #ff5cd6 !default;
|
||||
$pinkLighter: #ff85e0 !default;
|
||||
$pinkDull: #c39 !default;
|
||||
$pinkDuller: #936 !default;
|
||||
$pinkBright: #f6c !default;
|
||||
$pinkBrighter: #f9c !default;
|
||||
|
||||
//Variations
|
||||
|
||||
$pinkAmaranth: #e52b50 !default;
|
||||
$pinkBrink: #fb607f !default;
|
||||
$pinkCarmine: #960018 !default;
|
||||
$pinkCarnation: #ffa6c9 !default;
|
||||
$pinkCerise: #de3163 !default;
|
||||
$pinkCoral: #f88379 !default;
|
||||
$pinkDeep: #ff1493 !default;
|
||||
$pinkFandago: #b53389 !default;
|
||||
$pinkRose: #f64a8a !default;
|
||||
$pinkFuchsia: #f0f !default;
|
||||
$pinkHot: #ff69b4 !default;
|
||||
$pinkMagenta: #ff0090 !default;
|
||||
$pinkRuby: #e0115f !default;
|
||||
$pinkSalmon: #ff91a4 !default;
|
||||
|
||||
//Brands
|
||||
|
||||
$pinkDribbble: #ea4c89 !default;
|
||||
$pinkFlickr: #ff0084 !default;
|
||||
|
||||
|
||||
// * * * Premium * * *
|
||||
// -------------------------
|
||||
|
||||
|
||||
//Dulux 10
|
||||
|
||||
$pinkBerry: #d46f8d !default;
|
||||
$pinkPlum: #952c57 !default;
|
||||
$pinkBlush: #954d65 !default;
|
||||
$pinkAdobe: #9f5c60 !default;
|
||||
$pinkNevada: #ac545c !default;
|
||||
$pinkFlamingo: #c16b9e !default;
|
||||
$pinkCandy: #bb597e !default;
|
||||
$pinkFuchsia: #c25c77 !default;
|
||||
$pinkRose: #cf5f6f !default;
|
||||
$pinkParty: #d87082 !default;
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
// Preboot Colours http://getpreboot.com/
|
||||
// -------------------------
|
||||
|
||||
|
||||
//Blacks 9
|
||||
|
||||
$black10: #e6e6e6 !default;
|
||||
$black20: #ccc !default;
|
||||
$black30: #b3b3b3 !default;
|
||||
$black40: #999 !default;
|
||||
$black50: #808080 !default;
|
||||
$black60: #666 !default;
|
||||
$black70: #4d4d4d !default;
|
||||
$black80: #333 !default;
|
||||
$black90: #191919 !default;
|
||||
|
||||
|
||||
//Colours 5
|
||||
|
||||
$bluePrimary: #428bca !default;
|
||||
$greenSuccess: #5cb85c !default;
|
||||
$yellowWarning: #f0ad4e !default;
|
||||
$redDanger: #d9534f !default;
|
||||
$blueInfo: #5bc0de !default;
|
||||
@@ -0,0 +1,48 @@
|
||||
// Purples 19
|
||||
// -------------------------
|
||||
|
||||
|
||||
//Defaults
|
||||
|
||||
$purple: #96f !default;
|
||||
$purpleDark: #5c3d99 !default;
|
||||
$purpleDarker: #2e1f4c !default;
|
||||
$purpleLight: #ad85ff !default;
|
||||
$purpleLighter: #c2a3ff !default;
|
||||
$purpleDull: #957bc7 !default;
|
||||
$purpleDuller: #9589ad !default;
|
||||
$purpleBright: #93f !default;
|
||||
$purpleBrighter: #ad5cff !default;
|
||||
|
||||
//Variations
|
||||
|
||||
$purpleAmethyst: #96c !default;
|
||||
$purpleCerise: #de3163 !default;
|
||||
$purpleFandango: #b53389 !default;
|
||||
$purpleHeliotrope: #df73ff !default;
|
||||
$purpleLavendar: #b57edc !default;
|
||||
$purpleMagenta: #ff0090 !default;
|
||||
$purpleOrchid: #da70d6 !default;
|
||||
$purplePlum: #8e4585 !default;
|
||||
|
||||
//Brands
|
||||
|
||||
$purpleHeroku: #6567a5 !default;
|
||||
$purpleYahoo: #720e9e !default;
|
||||
|
||||
|
||||
// * * * Premium * * *
|
||||
// -------------------------
|
||||
|
||||
|
||||
//Dulux 8
|
||||
|
||||
$purpleRose: #865873 !default;
|
||||
$purpleBlush: #864e66 !default;
|
||||
$purpleOpera: #b977a9 !default;
|
||||
$purpleVerona: #a77aac !default;
|
||||
$purpleSpring: #a389b8 !default;
|
||||
$purpleBlossom: #8a7aa2 !default;
|
||||
$purpleShowers: #7571a4 !default;
|
||||
$purpleLilac: #797fa8 !default;
|
||||
|
||||
55
admin-kalsport/themes/default/scss/modules/colors/_reds.scss
Normal file
55
admin-kalsport/themes/default/scss/modules/colors/_reds.scss
Normal file
@@ -0,0 +1,55 @@
|
||||
// Reds 21
|
||||
// -------------------------
|
||||
|
||||
//Defaults
|
||||
|
||||
$red: #d42c2c !default;
|
||||
$redDark: #7a0000 !default;
|
||||
$redDarker: #3d0000 !default;
|
||||
$redLight: #db4d4d !default;
|
||||
$redLighter: #f0b2b2 !default;
|
||||
$redDull: #933 !default;
|
||||
$redDuller: #824d4d !default;
|
||||
$redBright: #f00 !default;
|
||||
$redBrighter: #ff6e6e !default;
|
||||
|
||||
//Variations
|
||||
|
||||
$redAuburn: #a52a2a !default;
|
||||
$redBurgundy: #9f1d35 !default;
|
||||
$redChestnut: #9a1a00 !default;
|
||||
$redCrimson: #dc143c !default;
|
||||
$redBrick: #b22222 !default;
|
||||
$redWood: #ab4e52 !default;
|
||||
$redRust: #b7410e !default;
|
||||
$redWine: #722f37 !default;
|
||||
|
||||
//Brands
|
||||
|
||||
$redGoogle: #db4a39 !default;
|
||||
$redLastfm: #c3000d !default;
|
||||
$redPinterest: #c8232c !default;
|
||||
$redYouTube: #c4302b !default;
|
||||
|
||||
|
||||
// * * * Premium * * *
|
||||
// -------------------------
|
||||
|
||||
|
||||
//Dulux 10
|
||||
|
||||
$redRaspberry: #bf545a !default;
|
||||
$redDiva: #b5787d !default;
|
||||
$redRuby: #7d3d3e !default;
|
||||
$redSummer: #a05a5c !default;
|
||||
$redFire: #b24848 !default;
|
||||
$redFountain: #a64048 !default;
|
||||
$redAutumn: #a34847 !default;
|
||||
$redBloom: #9d5351 !default;
|
||||
$redThai: #aa5452 !default;
|
||||
$redVolcanic: #b5473a !default;
|
||||
|
||||
//Zurb Foundation 1
|
||||
|
||||
$redZurb: #c60f13 !default;
|
||||
|
||||
29
admin-kalsport/themes/default/scss/modules/colors/_tans.scss
Normal file
29
admin-kalsport/themes/default/scss/modules/colors/_tans.scss
Normal file
@@ -0,0 +1,29 @@
|
||||
// Tans 9
|
||||
// -------------------------
|
||||
|
||||
$tan: #fc9 !default;
|
||||
$tanDark: #997a5c !default;
|
||||
$tanDarker: #4c3d2e !default;
|
||||
$tanLight: #ffd6ad !default;
|
||||
$tanLighter: #ffe0c2 !default;
|
||||
$tanDull: #c7925d !default;
|
||||
$tanDuller: #a67544 !default;
|
||||
$tanBright: #f96 !default;
|
||||
$tanBrighter: #ffc2a3 !default;
|
||||
|
||||
|
||||
// * * * Premium * * *
|
||||
// -------------------------
|
||||
|
||||
|
||||
//Dulux 8
|
||||
|
||||
$tanGold: #f5ca9e !default;
|
||||
$tanBronze: #edbc91 !default;
|
||||
$tanWholemeal: #e8b894 !default;
|
||||
$tanNectar: #eab897 !default;
|
||||
$tanMelody: #e3bba5 !default;
|
||||
$tanSpicy: #eaa06f !default;
|
||||
$tanPumpkin: #e09c70 !default;
|
||||
$tanGinger: #e89f78 !default;
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
// Turquoise 9
|
||||
// -------------------------
|
||||
|
||||
$turquoise: #48e8c8 !default;
|
||||
$turquoiseDark: #00997a !default;
|
||||
$turquoiseDarker: #006652 !default;
|
||||
$turquoiseLight: #6be8cf !default;
|
||||
$turquoiseLighter: #8ee8d6 !default;
|
||||
$turquoiseDull: #52ccb4 !default;
|
||||
$turquoiseDuller: #69b8a8 !default;
|
||||
$turquoiseBright: #0fc !default;
|
||||
$turquoiseBrighter: #80ffe6 !default;
|
||||
|
||||
// * * * Premium * * *
|
||||
// -------------------------
|
||||
|
||||
|
||||
//Dulux 3
|
||||
|
||||
$turquoiseTeal: #01969c !default;
|
||||
$turquoiseDawn: #35afba !default;
|
||||
$turquoiseCrystal: #2ba8a8 !default;
|
||||
@@ -0,0 +1,27 @@
|
||||
// Whites 15
|
||||
// -------------------------
|
||||
|
||||
$whiteAntiflash: #f2f3f4 !default;
|
||||
$whiteAntique: #faebd7 !default;
|
||||
$whiteBeige: #f5f5dc !default;
|
||||
$whiteBlond: #faf0be !default;
|
||||
$whiteCornsilk: #fff8dc !default;
|
||||
$whiteCosmic: #fff8e7 !default;
|
||||
$whiteCream: #fffdd0 !default;
|
||||
$whiteEggshell: #f0ead6 !default;
|
||||
$whiteFloral: #fffaf0 !default;
|
||||
$whiteHoneydew: #f0fff0 !default;
|
||||
$whiteIsabelline: #f4f0ec !default;
|
||||
$whiteNavajo: #ffdead !default;
|
||||
$whitePearl: #eae0c8 !default;
|
||||
$whiteVanilla: #f3e5ab !default;
|
||||
$whiteSmoke: #f5f5f5 !default;
|
||||
|
||||
|
||||
// * * * Premium * * *
|
||||
// -------------------------
|
||||
|
||||
|
||||
//Dulux 1
|
||||
|
||||
$whiteBlossom: #f6e9de !default;
|
||||
@@ -0,0 +1,48 @@
|
||||
// Yellow 17
|
||||
// -------------------------
|
||||
|
||||
//Defaults
|
||||
|
||||
$yellow: #fc0 !default;
|
||||
$yellowDark: #806600 !default;
|
||||
$yellowDarker: #332900 !default;
|
||||
$yellowLight: #ffdb4d !default;
|
||||
$yellowLighter: #ffeb99 !default;
|
||||
$yellowDull: #cfb036 !default;
|
||||
$yellowDuller: #b39f52 !default;
|
||||
$yellowBright: #ff0 !default;
|
||||
$yellowBrighter: #ff6 !default;
|
||||
|
||||
|
||||
//Variations
|
||||
|
||||
$yellowBuff: #f0dc82 !default;
|
||||
$yellowGold: #ffd700 !default;
|
||||
$yellowGoldmetal: #d4af37 !default;
|
||||
$yellowJasmine: #f8de7e !default;
|
||||
$yellowMaize: #fbec5d !default;
|
||||
$yellowSaffron: #f4c430 !default;
|
||||
$yellowSunglow: #fc3 !default;
|
||||
$yellowLight: #fdfc8f !default;
|
||||
|
||||
|
||||
// * * * Premium * * *
|
||||
// -------------------------
|
||||
|
||||
|
||||
//Dulux 13
|
||||
|
||||
$yellowAboutme: #fc3 !default;
|
||||
$yellowAim: #fcd20b !default;
|
||||
$yellowPharaoh: #fdc46b !default;
|
||||
$yellowHavana: #fbbb5c !default;
|
||||
$yellowSunny: #ffd251 !default;
|
||||
$yellowDelhi: #ffc924 !default;
|
||||
$yellowSpring: #ffcd59 !default;
|
||||
$yellowSunflower: #ffc43c !default;
|
||||
$yellowGlaze: #ffc054 !default;
|
||||
$yellowBreeze: #f0d458 !default;
|
||||
$yellowEaster: #fecf51 !default;
|
||||
$yellowLemon: #ffd865 !default;
|
||||
$yellowButtercup: #f9c833 !default;
|
||||
|
||||
35
admin-kalsport/themes/default/scss/modules/colors/index.php
Normal file
35
admin-kalsport/themes/default/scss/modules/colors/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright since 2007 PrestaShop SA and Contributors
|
||||
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 3.0)
|
||||
* that is bundled with this package in the file LICENSE.md.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* https://opensource.org/licenses/OSL-3.0
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@prestashop.com so we can send you a copy immediately.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||||
* versions in the future. If you wish to customize PrestaShop for your
|
||||
* needs please refer to https://devdocs.prestashop.com/ for more information.
|
||||
*
|
||||
* @author PrestaShop SA and Contributors <contact@prestashop.com>
|
||||
* @copyright Since 2007 PrestaShop SA and Contributors
|
||||
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
35
admin-kalsport/themes/default/scss/modules/index.php
Normal file
35
admin-kalsport/themes/default/scss/modules/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright since 2007 PrestaShop SA and Contributors
|
||||
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 3.0)
|
||||
* that is bundled with this package in the file LICENSE.md.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* https://opensource.org/licenses/OSL-3.0
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@prestashop.com so we can send you a copy immediately.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||||
* versions in the future. If you wish to customize PrestaShop for your
|
||||
* needs please refer to https://devdocs.prestashop.com/ for more information.
|
||||
*
|
||||
* @author PrestaShop SA and Contributors <contact@prestashop.com>
|
||||
* @copyright Since 2007 PrestaShop SA and Contributors
|
||||
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
Reference in New Issue
Block a user