| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 | 55 |
| 56 // Fonts | 56 // Fonts |
| 57 //////////////////////////////////////////////////////////////////////////////// | 57 //////////////////////////////////////////////////////////////////////////////// |
| 58 | 58 |
| 59 $path-to-font-files: "../fonts" !default; | 59 $path-to-font-files: "../fonts" !default; |
| 60 | 60 |
| 61 $primary-font: "Source Sans Pro", Arial, sans-serif !default; | 61 $primary-font: "Source Sans Pro", Arial, sans-serif !default; |
| 62 $secondary-font: serif !default; | 62 $secondary-font: serif !default; |
| 63 $monospace-font: monospace !default; | 63 $monospace-font: monospace !default; |
| 64 | 64 |
| 65 $bold-weight: 600 !default; | 65 $bold-weight: 700 !default; |
| 66 $normal-weight: 400 !default; | 66 $normal-weight: 400 !default; |
| 67 $thin-weight: 300 !default; | 67 $thin-weight: 300 !default; |
| 68 | 68 |
| 69 // Spacing | 69 // Spacing |
| 70 //////////////////////////////////////////////////////////////////////////////// | 70 //////////////////////////////////////////////////////////////////////////////// |
| 71 | 71 |
| 72 $large-space: 4em !default; | 72 $large-space: 4em !default; |
| 73 $medium-space: 2em !default; | 73 $medium-space: 2em !default; |
| 74 $small-space: 1em !default; | 74 $small-space: 1em !default; |
| 75 | 75 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 104 | 104 |
| 105 // Container | 105 // Container |
| 106 | 106 |
| 107 $container-width: $large-desktop-width !default; | 107 $container-width: $large-desktop-width !default; |
| 108 | 108 |
| 109 // Navbar | 109 // Navbar |
| 110 | 110 |
| 111 $navbar-branding-height: $medium-space !default; | 111 $navbar-branding-height: $medium-space !default; |
| 112 $navbar-padding: $small-space !default; | 112 $navbar-padding: $small-space !default; |
| 113 $add-horizontal-navbar-padding: true !default; | 113 $add-horizontal-navbar-padding: true !default; |
| OLD | NEW |