LEFT | RIGHT |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 | 202 |
203 html[dir="rtl"] #sidebar header | 203 html[dir="rtl"] #sidebar header |
204 { | 204 { |
205 margin-left: 2rem; | 205 margin-left: 2rem; |
206 } | 206 } |
207 | 207 |
208 #sidebar header h1 | 208 #sidebar header h1 |
209 { | 209 { |
210 margin: 0rem; | 210 margin: 0rem; |
211 font-size: 1.5rem; | 211 font-size: 1.5rem; |
| 212 } |
| 213 |
| 214 #sidebar header h1 strong |
| 215 { |
| 216 font-weight: 700; |
212 } | 217 } |
213 | 218 |
214 #sidebar header p | 219 #sidebar header p |
215 { | 220 { |
216 margin: 0rem; | 221 margin: 0rem; |
217 font-size: 2.4rem; | 222 font-size: 2.4rem; |
218 } | 223 } |
219 | 224 |
220 html[dir="rtl"] #sidebar header | 225 html[dir="rtl"] #sidebar header |
221 { | 226 { |
(...skipping 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1127 border: 0rem; | 1132 border: 0rem; |
1128 background-color: #099DD1; | 1133 background-color: #099DD1; |
1129 -webkit-mask: url(delete.svg); | 1134 -webkit-mask: url(delete.svg); |
1130 mask: url(delete.svg); | 1135 mask: url(delete.svg); |
1131 } | 1136 } |
1132 | 1137 |
1133 #hide-notification:hover::after | 1138 #hide-notification:hover::after |
1134 { | 1139 { |
1135 background-color: #5CBCE1; | 1140 background-color: #5CBCE1; |
1136 } | 1141 } |
LEFT | RIGHT |