| OLD | NEW |
| 1 /*! | 1 /*! |
| 2 * This file is part of website-defaults | 2 * This file is part of website-defaults |
| 3 * Copyright (C) 2016-present eyeo GmbH | 3 * Copyright (C) 2016-present 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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 width: 1px; | 232 width: 1px; |
| 233 height: 1px; | 233 height: 1px; |
| 234 margin: -1px; | 234 margin: -1px; |
| 235 padding: 0; | 235 padding: 0; |
| 236 border: 0; } | 236 border: 0; } |
| 237 | 237 |
| 238 /* Unstyled elements | 238 /* Unstyled elements |
| 239 ******************************************************************************/ | 239 ******************************************************************************/ |
| 240 .unstyled, | 240 .unstyled, |
| 241 .unstyled *, | 241 .unstyled *, |
| 242 .content .unstyled { | 242 .content .unstyled, |
| 243 .content .unstyled * { |
| 243 margin: 0; | 244 margin: 0; |
| 244 padding: 0; | 245 padding: 0; |
| 245 border: 0; | 246 border: 0; |
| 246 background: none; } | 247 background: none; } |
| 247 | 248 |
| 248 ul.unstyled { | 249 .unstyled ul, |
| 250 ul.unstyled, |
| 251 .unstyled li, |
| 252 li.unstyled { |
| 249 list-style: none; } | 253 list-style: none; } |
| 250 | 254 |
| 251 /* Backgrounds | 255 /* Backgrounds |
| 252 ******************************************************************************/ | 256 ******************************************************************************/ |
| 253 .bg-primary { | 257 .bg-primary { |
| 254 color: #fff; | 258 color: #fff; |
| 255 background-color: #000; } | 259 background-color: #000; } |
| 256 | 260 |
| 257 .bg-secondary { | 261 .bg-secondary { |
| 258 color: #eee; | 262 color: #eee; |
| 259 background-color: #424242; } | 263 background-color: #424242; } |
| 260 | 264 |
| 261 .bg-accent { | 265 .bg-accent { |
| 262 color: #e3f2fd; | 266 color: #e3f2fd; |
| 263 background-color: #0d47a1; } | 267 background-color: #0d47a1; } |
| 264 | 268 |
| 265 .bg-error { | 269 .bg-error { |
| 266 color: #ffebee; | 270 color: #ffebee; |
| 267 background-color: #b71c1c; } | 271 background-color: #b71c1c; } |
| 268 | 272 |
| 273 /* Lead |
| 274 ******************************************************************************/ |
| 275 .lead { |
| 276 font-size: 1.25em; } |
| 277 |
| 278 @media (max-width: 767px) { |
| 279 .lead { |
| 280 font-size: 1.125em; } } |
| 281 |
| 269 /******************************************************************************* | 282 /******************************************************************************* |
| 270 * Base styles | 283 * Base styles |
| 271 ******************************************************************************/ | 284 ******************************************************************************/ |
| 272 html { | 285 html { |
| 273 color: #212121; | 286 color: #212121; |
| 274 background-color: #fff; | 287 background-color: #fff; |
| 275 font-family: sans-serif; | 288 font-family: sans-serif; |
| 276 line-height: 1.5; } | 289 line-height: 1.5; } |
| 277 | 290 |
| 278 /******************************************************************************* | 291 /******************************************************************************* |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 [type="submit"]::-moz-focus-inner { | 530 [type="submit"]::-moz-focus-inner { |
| 518 padding: 0px; | 531 padding: 0px; |
| 519 border-style: none; } | 532 border-style: none; } |
| 520 | 533 |
| 521 /* Restore the focus styles unset by the previous rule. */ | 534 /* Restore the focus styles unset by the previous rule. */ |
| 522 button:-moz-focusring, | 535 button:-moz-focusring, |
| 523 [type="button"]:-moz-focusring, | 536 [type="button"]:-moz-focusring, |
| 524 [type="reset"]:-moz-focusring, | 537 [type="reset"]:-moz-focusring, |
| 525 [type="submit"]:-moz-focusring { | 538 [type="submit"]:-moz-focusring { |
| 526 outline: 1px dotted ButtonText; } | 539 outline: 1px dotted ButtonText; } |
| OLD | NEW |