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 a { | 5 a { |
6 color: #585858; | 6 color: #585858; |
7 } | 7 } |
8 | 8 |
9 body { | 9 body { |
10 background-color: #f7f7f7; | 10 background-color: #f7f7f7; |
(...skipping 27 matching lines...) Expand all Loading... | |
38 | 38 |
39 button:active { | 39 button:active { |
40 background: rgb(50, 102, 213); | 40 background: rgb(50, 102, 213); |
41 outline: 0; | 41 outline: 0; |
42 } | 42 } |
43 | 43 |
44 button:hover { | 44 button:hover { |
45 box-shadow: 0 1px 3px rgba(0, 0, 0, .50); | 45 box-shadow: 0 1px 3px rgba(0, 0, 0, .50); |
46 } | 46 } |
47 | 47 |
48 .debugging-par { | |
Bernhard Bauer
2014/09/19 08:40:35
What does "par" mean here?
felt
2014/09/20 15:47:02
Renamed to debugging-content.
| |
49 line-height: 1em; | |
50 margin-bottom: 0; | |
51 margin-top: 0; | |
52 } | |
53 | |
54 .debugging-title { | |
55 font-weight: bold; | |
56 } | |
57 | |
48 #details { | 58 #details { |
49 color: #696969; | 59 color: #696969; |
50 margin: 45px 0 50px; | 60 margin: 45px 0 50px; |
51 } | 61 } |
52 | 62 |
53 #details p:not(:first-of-type) { | 63 #details p:not(:first-of-type) { |
54 margin-top: 20px; | 64 margin-top: 20px; |
55 } | 65 } |
56 | 66 |
57 #error-code { | 67 #error-code { |
58 color: black; | 68 color: black; |
59 opacity: .35; | 69 opacity: .35; |
60 text-transform: uppercase; | 70 text-transform: uppercase; |
61 } | 71 } |
62 | 72 |
73 #error-debugging-info { | |
74 font-size: 0.8em; | |
75 } | |
76 | |
63 h1 { | 77 h1 { |
64 -webkit-margin-after: 16px; | 78 -webkit-margin-after: 16px; |
65 color: #585858; | 79 color: #585858; |
66 font-size: 1.6em; | 80 font-size: 1.6em; |
67 font-weight: normal; | 81 font-weight: normal; |
68 line-height: 1.25em; | 82 line-height: 1.25em; |
69 } | 83 } |
70 | 84 |
71 h2 { | 85 h2 { |
72 font-size: 1.2em; | 86 font-size: 1.2em; |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
241 } | 255 } |
242 | 256 |
243 .nav-wrapper { | 257 .nav-wrapper { |
244 margin-top: 30px; | 258 margin-top: 30px; |
245 } | 259 } |
246 | 260 |
247 .small-link { | 261 .small-link { |
248 font-size: 1em; | 262 font-size: 1em; |
249 } | 263 } |
250 } | 264 } |
OLD | NEW |