| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 .desktop-only | 63 .desktop-only |
| 64 { | 64 { |
| 65 @media (max-width: $desktop-breakpoint - 1px) | 65 @media (max-width: $desktop-breakpoint - 1px) |
| 66 { | 66 { |
| 67 display: none; | 67 display: none; |
| 68 } | 68 } |
| 69 } | 69 } |
| 70 | 70 |
| 71 // Unstyled /////////////////////////////////////////////////////////////// | 71 // Unstyled /////////////////////////////////////////////////////////////// |
| 72 | 72 |
| 73 .unstyled | 73 .unstyled, |
| 74 .content .unstyled |
| 74 { | 75 { |
| 75 margin: 0; | 76 margin: 0; |
| 76 padding: 0; | 77 padding: 0; |
| 77 border: 0; | 78 border: 0; |
| 78 background: none; | 79 background: none; |
| 79 } | 80 } |
| 80 | 81 |
| 82 ul.unstyled |
| 83 { |
| 84 list-style: none; |
| 85 } |
| 86 |
| 81 // Typography /////////////////////////////////////////////////////////////// | 87 // Typography /////////////////////////////////////////////////////////////// |
| 82 | 88 |
| 83 .ta-center | 89 .ta-center |
| 84 { | 90 { |
| 85 text-align: center; | 91 text-align: center; |
| 86 } | 92 } |
| 87 | 93 |
| 88 // Font Colours //////////////////////////////////////////////////////////// | 94 // Font Colours //////////////////////////////////////////////////////////// |
| 89 | 95 |
| 90 .muted | 96 .muted |
| 91 { | 97 { |
| 92 color: $gray-medium; | 98 color: $gray-medium; |
| 93 } | 99 } |
| 94 | 100 |
| 95 a.muted, | 101 a.muted, |
| 96 .muted a | 102 .muted a |
| 97 { | 103 { |
| 98 color: $gray-medium !important; | 104 color: $gray-medium !important; |
| 99 text-decoration: underline; | 105 text-decoration: underline; |
| 100 } | 106 } |
| 101 | 107 |
| 102 // Underlined /////////////////////////////////////////////////////////////// | 108 // Underlined /////////////////////////////////////////////////////////////// |
| 103 | 109 |
| 104 .underlined | 110 .underlined |
| 105 { | 111 { |
| 106 border-bottom: 1px dotted $gray; | 112 border-bottom: 1px dotted $gray; |
| 107 } | 113 } |
| OLD | NEW |