OLD | NEW |
1 // This file is part of help.eyeo.com. | 1 // This file is part of help.eyeo.com. |
2 // Copyright (C) 2017-present eyeo GmbH | 2 // Copyright (C) 2017-present eyeo GmbH |
3 // | 3 // |
4 // help.eyeo.com is free software: you can redistribute it and/or modify | 4 // help.eyeo.com is free software: you can redistribute it and/or modify |
5 // it under the terms of the GNU General Public License as published by | 5 // 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 // help.eyeo.com is distributed in the hope that it will be useful, | 9 // help.eyeo.com 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 21 matching lines...) Expand all Loading... |
32 $abp-red: #C70D2B; | 32 $abp-red: #C70D2B; |
33 $abb-blue: #0D79C7; | 33 $abb-blue: #0D79C7; |
34 | 34 |
35 // Primary - The most widely used across all screens and components. | 35 // Primary - The most widely used across all screens and components. |
36 | 36 |
37 $primary: $eyeo-black; | 37 $primary: $eyeo-black; |
38 | 38 |
39 // Fonts | 39 // Fonts |
40 //////////////////////////////////////////////////////////////////////////////// | 40 //////////////////////////////////////////////////////////////////////////////// |
41 | 41 |
42 // Font stack | 42 $path-to-font-files: "/fonts"; |
43 | |
44 $primary-font: "Source Sans Pro", sans-serif; | |
45 | 43 |
46 // Font colours | 44 // Font colours |
47 | 45 |
48 $font-color-default: $eyeo-black; | 46 $font-color-default: $eyeo-black; |
49 $font-color-link: $abb-blue; | 47 $font-color-link: $abb-blue; |
50 | 48 |
51 // Font sizes (headings) | 49 // Font sizes (headings) |
52 | 50 |
53 $font-size-h1: 2.8em; | 51 $font-size-h1: 2.8em; |
54 $font-size-h2: 2em; | 52 $font-size-h2: 2em; |
(...skipping 30 matching lines...) Expand all Loading... |
85 | 83 |
86 $search-form-width: 320px; | 84 $search-form-width: 320px; |
87 $search-form-height: 35px; | 85 $search-form-height: 35px; |
88 | 86 |
89 // Supported Browsers | 87 // Supported Browsers |
90 /////////////////////////////////////////////////////////////////////////////// | 88 /////////////////////////////////////////////////////////////////////////////// |
91 | 89 |
92 $supported-browsers: chrome opera samsungBrowser | 90 $supported-browsers: chrome opera samsungBrowser |
93 yandexbrowser maxthon msie | 91 yandexbrowser maxthon msie |
94 msedge firefox ios safari; | 92 msedge firefox ios safari; |
OLD | NEW |