| OLD | NEW |
| 1 // This file is part of website-defaults | 1 // This file is part of website-defaults |
| 2 // Copyright (C) 2016-present eyeo GmbH | 2 // Copyright (C) 2016-present eyeo GmbH |
| 3 // | 3 // |
| 4 // website-defaults is free software: you can redistribute it and/or | 4 // website-defaults is free software: you can redistribute it and/or |
| 5 // modify it under the terms of the GNU General Public License as published by | 5 // modify it under the terms of the GNU General Public License as published by |
| 6 // the Free Software Foundation, either version 3 of the License, or | 6 // the Free Software Foundation, either version 3 of the License, or |
| 7 // (at your option) any later version. | 7 // (at your option) any later version. |
| 8 // | 8 // |
| 9 // website-defaults is distributed in the hope that it will be useful, | 9 // website-defaults is distributed in the hope that it will be useful, |
| 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 $error-light: #ffebee !default; | 53 $error-light: #ffebee !default; |
| 54 $error-dark: #b71c1c !default; | 54 $error-dark: #b71c1c !default; |
| 55 | 55 |
| 56 // Fonts | 56 // Fonts |
| 57 //////////////////////////////////////////////////////////////////////////////// | 57 //////////////////////////////////////////////////////////////////////////////// |
| 58 | 58 |
| 59 $primary-font: sans-serif !default; | 59 $primary-font: sans-serif !default; |
| 60 $secondary-font: serif !default; | 60 $secondary-font: serif !default; |
| 61 $monospace-font: monospace !default; | 61 $monospace-font: monospace !default; |
| 62 | 62 |
| 63 $large-font: 1.2em !default; | |
| 64 $medium-font: 1em !default; | |
| 65 $small-font: 0.8em !default; | |
| 66 | |
| 67 $bold-weight: 600 !default; | 63 $bold-weight: 600 !default; |
| 68 $normal-weight: 400 !default; | 64 $normal-weight: 400 !default; |
| 69 $thin-weight: 300 !default; | 65 $thin-weight: 300 !default; |
| 70 | 66 |
| 71 // Spacing | 67 // Spacing |
| 72 //////////////////////////////////////////////////////////////////////////////// | 68 //////////////////////////////////////////////////////////////////////////////// |
| 73 | 69 |
| 74 $large-space: 4em !default; | 70 $large-space: 4em !default; |
| 75 $medium-space: 2em !default; | 71 $medium-space: 2em !default; |
| 76 $small-space: 1em !default; | 72 $small-space: 1em !default; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 98 $phone-width: auto !default; | 94 $phone-width: auto !default; |
| 99 $phablet-width: 540px !default; | 95 $phablet-width: 540px !default; |
| 100 $tablet-width: 720px !default; | 96 $tablet-width: 720px !default; |
| 101 $desktop-width: 960px !default; | 97 $desktop-width: 960px !default; |
| 102 $large-desktop-width: 1140px !default; | 98 $large-desktop-width: 1140px !default; |
| 103 | 99 |
| 104 // Component widths | 100 // Component widths |
| 105 //////////////////////////////////////////////////////////////////////////////// | 101 //////////////////////////////////////////////////////////////////////////////// |
| 106 | 102 |
| 107 $container-width: $large-desktop-width !default; | 103 $container-width: $large-desktop-width !default; |
| OLD | NEW |