| OLD | NEW |
| 1 // This file is part of help.eyeo.com. | 1 // This file is part of help.eyeo.com. |
| 2 // Copyright (C) 2017 Eyeo GmbH | 2 // Copyright (C) 2017 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 16 matching lines...) Expand all Loading... |
| 27 position: absolute; | 27 position: absolute; |
| 28 overflow: hidden; | 28 overflow: hidden; |
| 29 clip: rect(0, 0, 0, 0); | 29 clip: rect(0, 0, 0, 0); |
| 30 width: 1px; | 30 width: 1px; |
| 31 height: 1px; | 31 height: 1px; |
| 32 margin: -1px; | 32 margin: -1px; |
| 33 padding: 0; | 33 padding: 0; |
| 34 border: 0; | 34 border: 0; |
| 35 } | 35 } |
| 36 | 36 |
| 37 // Clearfix /////////////////////////////////////////////////////////////// | |
| 38 | |
| 39 .clearfix:after | |
| 40 { | |
| 41 display: table; | |
| 42 clear: both; | |
| 43 content: ""; | |
| 44 } | |
| 45 | |
| 46 // Responsive /////////////////////////////////////////////////////////////// | 37 // Responsive /////////////////////////////////////////////////////////////// |
| 47 | 38 |
| 48 .mobile-only | 39 .mobile-only |
| 49 { | 40 { |
| 50 @media (min-width: $phablet-breakpoint) | 41 @media (min-width: $phablet-breakpoint) |
| 51 { | 42 { |
| 52 display: none; | 43 display: none; |
| 53 } | 44 } |
| 54 } | 45 } |
| 55 | 46 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 color: $gray-medium !important; | 98 color: $gray-medium !important; |
| 108 text-decoration: underline; | 99 text-decoration: underline; |
| 109 } | 100 } |
| 110 | 101 |
| 111 // Underlined /////////////////////////////////////////////////////////////// | 102 // Underlined /////////////////////////////////////////////////////////////// |
| 112 | 103 |
| 113 .underlined | 104 .underlined |
| 114 { | 105 { |
| 115 border-bottom: 1px dotted $gray; | 106 border-bottom: 1px dotted $gray; |
| 116 } | 107 } |
| OLD | NEW |