| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 /*! | 1 /*! |
| 2 * This file is part of website-defaults | 2 * This file is part of website-defaults |
| 3 * Copyright (C) 2016 Eyeo GmbH | 3 * Copyright (C) 2016 Eyeo GmbH |
| 4 * | 4 * |
| 5 * website-defaults is free software: you can redistribute it and/or | 5 * website-defaults is free software: you can redistribute it and/or |
| 6 * modify it under the terms of the GNU General Public License as published by | 6 * modify it under the terms of the GNU General Public License as published by |
| 7 * the Free Software Foundation, either version 3 of the License, or | 7 * the Free Software Foundation, either version 3 of the License, or |
| 8 * (at your option) any later version. | 8 * (at your option) any later version. |
| 9 * | 9 * |
| 10 * website-defaults is distributed in the hope that it will be useful, | 10 * website-defaults is distributed in the hope that it will be useful, |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 27 * - Spacing | 27 * - Spacing |
| 28 * - Breakpoints | 28 * - Breakpoints |
| 29 ******************************************************************************/ | 29 ******************************************************************************/ |
| 30 | 30 |
| 31 /* Brand colors | 31 /* Brand colors |
| 32 ******************************************************************************/ | 32 ******************************************************************************/ |
| 33 | 33 |
| 34 /* Primary - The most widely used across all screens and components. */ | 34 /* Primary - The most widely used across all screens and components. */ |
| 35 | 35 |
| 36 $primary: #212121 !default; | 36 $primary: #212121 !default; |
| 37 $primary-light: #fafafa !default; | 37 $primary-light: #fff !default; |
| 38 $primary-dark: #000 !default; | 38 $primary-dark: #000 !default; |
| 39 | 39 |
| 40 /* Secondary - Used to indicate a related action or information. */ | 40 /* Secondary - Used to indicate a related action or information. */ |
| 41 | 41 |
| 42 $secondary: #9e9e9e !default; | 42 $secondary: #9e9e9e !default; |
| 43 $secondary-light: #9e9e9e !default; | 43 $secondary-light: #eee !default; |
| 44 $secondary-dark: #424242 !default; | 44 $secondary-dark: #424242 !default; |
| 45 | 45 |
| 46 /* Accent - Used for action buttons and interactive elements. */ | 46 /* Accent - Used for action buttons and interactive elements. */ |
| 47 | 47 |
| 48 $accent: #1565c0 !default; | 48 $accent: #1565c0 !default; |
| 49 $accent-light: #e3f2fd !default; | 49 $accent-light: #e3f2fd !default; |
| 50 $accent-dark: #0d47a1 !default; | 50 $accent-dark: #0d47a1 !default; |
| 51 | 51 |
| 52 /* Error - Used for error messages and warnings. */ | 52 /* Error - Used for error messages and warnings. */ |
| 53 | 53 |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 68 | 68 |
| 69 $bold-weight: 600 !default; | 69 $bold-weight: 600 !default; |
| 70 $normal-weight: 400 !default; | 70 $normal-weight: 400 !default; |
| 71 $thin-weight: 300 !default; | 71 $thin-weight: 300 !default; |
| 72 | 72 |
| 73 /* Spacing | 73 /* Spacing |
| 74 ******************************************************************************/ | 74 ******************************************************************************/ |
| 75 | 75 |
| 76 $large-space: 64px !default; | 76 $large-space: 64px !default; |
| 77 $medium-space: 32px !default; | 77 $medium-space: 32px !default; |
| 78 $small-space: 16px !default; | 78 $small-space: 16px !default; |
|
saroyanm
2016/11/29 17:51:07
Detail: we are only using $small-space currently
juliandoucette
2016/11/29 20:41:21
Don't you think it's a good idea to define medium
juliandoucette
2016/11/30 18:26:00
Acknowledged.
| |
| 79 | 79 |
| 80 /* Breakpoints | 80 /* Breakpoints |
| 81 ******************************************************************************/ | 81 ******************************************************************************/ |
| 82 | 82 |
| 83 $tablet-breakpoint: 768px; | 83 $tablet-breakpoint: 768px; |
| 84 $desktop-breakpoint: 992px; | 84 $desktop-breakpoint: 992px; |
| 85 | 85 |
| 86 /* Container widths | 86 /* Container widths |
| 87 ******************************************************************************/ | 87 ******************************************************************************/ |
| 88 | 88 |
| 89 $mobile-width: 540px !default; | 89 $mobile-width: 540px !default; |
| 90 $tablet-width: 720px !default; | 90 $tablet-width: 720px !default; |
| 91 $desktop-width: 960px !default; | 91 $desktop-width: 960px !default; |
| LEFT | RIGHT |