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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 $font-size-h6: $font-size-h4; | 58 $font-size-h6: $font-size-h4; |
59 | 59 |
60 // Font sizes (general) | 60 // Font sizes (general) |
61 | 61 |
62 $small-font: 0.9em; | 62 $small-font: 0.9em; |
63 $tiny-font: 0.8em; | 63 $tiny-font: 0.8em; |
64 | 64 |
65 // Spacing | 65 // Spacing |
66 //////////////////////////////////////////////////////////////////////////////// | 66 //////////////////////////////////////////////////////////////////////////////// |
67 | 67 |
68 $xl: 60px; | 68 $x-small-space: 0.5em; |
69 $lg: 30px; | |
70 $md: 15px; | |
71 $sm: 10px; | |
72 $xs: 5px; | |
73 | 69 |
74 // Breakpoints | 70 // Breakpoints |
75 //////////////////////////////////////////////////////////////////////////////// | 71 //////////////////////////////////////////////////////////////////////////////// |
76 | 72 |
77 // Device breakpoints | 73 // Device breakpoints |
78 | 74 |
79 $phablet-breakpoint: 576px; | 75 $phablet-breakpoint: 576px; |
80 | 76 |
81 // Component sizes | 77 // Component sizes |
82 //////////////////////////////////////////////////////////////////////////////// | 78 //////////////////////////////////////////////////////////////////////////////// |
(...skipping 11 matching lines...) Expand all Loading... |
94 | 90 |
95 $search-form-width: 320px; | 91 $search-form-width: 320px; |
96 $search-form-height: 35px; | 92 $search-form-height: 35px; |
97 | 93 |
98 // Supported Browsers | 94 // Supported Browsers |
99 /////////////////////////////////////////////////////////////////////////////// | 95 /////////////////////////////////////////////////////////////////////////////// |
100 | 96 |
101 $supported-browsers: chrome opera samsungBrowser | 97 $supported-browsers: chrome opera samsungBrowser |
102 yandexbrowser maxthon msie | 98 yandexbrowser maxthon msie |
103 msedge firefox ios safari; | 99 msedge firefox ios safari; |
OLD | NEW |