| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 98   height: 1px; | 98   height: 1px; | 
| 99   margin: -1px; | 99   margin: -1px; | 
| 100   padding: 0; | 100   padding: 0; | 
| 101   border: 0; | 101   border: 0; | 
| 102 } | 102 } | 
| 103 | 103 | 
| 104 /* Unstyled elements | 104 /* Unstyled elements | 
| 105  ******************************************************************************/ | 105  ******************************************************************************/ | 
| 106 | 106 | 
| 107 .unstyled, | 107 .unstyled, | 
| 108 .unstyled *, | 108 .unstyled * | 
| 109 .content .unstyled |  | 
| 110 { | 109 { | 
| 111   margin: 0; | 110   margin: 0 !important; | 
| 112   padding: 0; | 111   padding: 0 !important; | 
| 113   border: 0; | 112   border: 0 !important; | 
| 114   background: none; | 113   background: none !important; | 
| 115 } | 114   list-style: none !important; | 
| 116 |  | 
| 117 ul.unstyled |  | 
| 118 { |  | 
| 119   list-style: none; |  | 
| 120 } | 115 } | 
| 121 | 116 | 
| 122 /* Backgrounds | 117 /* Backgrounds | 
| 123  ******************************************************************************/ | 118  ******************************************************************************/ | 
| 124 | 119 | 
| 125 .bg-primary | 120 .bg-primary | 
| 126 { | 121 { | 
| 127   color: $primary-light; | 122   color: $primary-light; | 
| 128   background-color: $primary-dark; | 123   background-color: $primary-dark; | 
| 129 } | 124 } | 
| (...skipping 16 matching lines...) Expand all  Loading... | 
| 146   background-color: $error-dark; | 141   background-color: $error-dark; | 
| 147 } | 142 } | 
| 148 | 143 | 
| 149 /* Lead | 144 /* Lead | 
| 150  ******************************************************************************/ | 145  ******************************************************************************/ | 
| 151 | 146 | 
| 152 .lead | 147 .lead | 
| 153 { | 148 { | 
| 154   font-size: 1.25em; | 149   font-size: 1.25em; | 
| 155 } | 150 } | 
| OLD | NEW | 
|---|