OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 /* Set the global 'box-sizing' state to 'border-box'. | 5 /* Set the global 'box-sizing' state to 'border-box'. |
6 * *::after and *::before used to select psuedo-elements not selectable by *. */ | 6 * *::after and *::before used to select pseudo-elements not selectable by *. */ |
7 | 7 |
8 *, | 8 *, |
9 *::after, | 9 *::after, |
10 *::before { | 10 *::before { |
11 box-sizing: border-box; | 11 box-sizing: border-box; |
12 } | 12 } |
13 | 13 |
14 /* Remove all margins and padding from certain element and add word wrap. */ | 14 /* Remove all margins and padding from certain element and add word wrap. */ |
15 | 15 |
16 blockquote, | 16 blockquote, |
(...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
672 border-color: rgb(250,36,36); | 672 border-color: rgb(250,36,36); |
673 } | 673 } |
674 | 674 |
675 #loader.red .circle.red .mask.first .mover { | 675 #loader.red .circle.red .mask.first .mover { |
676 background-color: rgb(33,89,189); | 676 background-color: rgb(33,89,189); |
677 } | 677 } |
678 | 678 |
679 #loader.red .circle.red .mask.second .mover { | 679 #loader.red .circle.red .mask.second .mover { |
680 background-color: rgb(250,36,36); | 680 background-color: rgb(250,36,36); |
681 } | 681 } |
OLD | NEW |