| LEFT | RIGHT |
| 1 /*! | 1 /*! |
| 2 * This file is part of website-defaults | 2 * This file is part of website-defaults |
| 3 * Copyright (C) 2016 Eyeo GmbH | 3 * Copyright (C) 2016 Eyeo GmbH |
| 4 * | 4 * |
| 5 * website-defaults is free software: you can redistribute it and/or | 5 * website-defaults is free software: you can redistribute it and/or |
| 6 * modify it under the terms of the GNU General Public License as published by | 6 * modify it under the terms of the GNU General Public License as published by |
| 7 * the Free Software Foundation, either version 3 of the License, or | 7 * the Free Software Foundation, either version 3 of the License, or |
| 8 * (at your option) any later version. | 8 * (at your option) any later version. |
| 9 * | 9 * |
| 10 * website-defaults is distributed in the hope that it will be useful, | 10 * website-defaults is distributed in the hope that it will be useful, |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 } | 136 } |
| 137 | 137 |
| 138 hr | 138 hr |
| 139 { | 139 { |
| 140 border: 1px solid $secondary-light; | 140 border: 1px solid $secondary-light; |
| 141 } | 141 } |
| 142 | 142 |
| 143 blockquote | 143 blockquote |
| 144 { | 144 { |
| 145 padding-left: 1em; | 145 padding-left: 1em; |
| 146 border-left: 5px solid $secondary-light; | 146 border-left: 5px solid $secondary; |
| 147 } | 147 } |
| 148 | 148 |
| 149 [dir="rtl"] blockquote | 149 [dir="rtl"] blockquote |
| 150 { | 150 { |
| 151 padding-right: 1em; | 151 padding-right: 1em; |
| 152 padding-left: 0em; | 152 padding-left: 0em; |
| 153 border-right: 5px solid $secondary-light; | 153 border-right: 5px solid $secondary-light; |
| 154 border-left: 0px; | 154 border-left: 0px; |
| 155 } | 155 } |
| 156 | 156 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 dt | 189 dt |
| 190 { | 190 { |
| 191 /* undo browser default (opinionated)*/ | 191 /* undo browser default (opinionated)*/ |
| 192 font-weight: $bold-weight; | 192 font-weight: $bold-weight; |
| 193 } | 193 } |
| 194 | 194 |
| 195 dd | 195 dd |
| 196 { | 196 { |
| 197 margin: 0.5em 0em 1em 0em; | 197 margin: 0.5em 0em 1em 0em; |
| 198 } | 198 } |
| LEFT | RIGHT |