| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 | 5 |
| 6 body { | 6 body { |
| 7 font-family: 'Chrome Droid Sans', 'Droid Sans Fallback', sans-serif; | |
| 8 font-size: 75%; | |
| 9 padding: 0; | 7 padding: 0; |
| 10 } | 8 } |
| 11 | 9 |
| 12 .navigation h1 { | 10 .navigation h1 { |
| 13 margin: 0; | 11 margin: 0; |
| 14 padding: 21px 23px 13px; | 12 padding: 21px 23px 13px; |
| 15 } | 13 } |
| 16 | 14 |
| 17 .navigation ul { | 15 .navigation ul { |
| 18 list-style-type: none; | 16 list-style-type: none; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 45 | 43 |
| 46 .page header > h1 { | 44 .page header > h1 { |
| 47 margin: 0; | 45 margin: 0; |
| 48 padding: 21px 0 13px; | 46 padding: 21px 0 13px; |
| 49 } | 47 } |
| 50 | 48 |
| 51 /* Create a border under the h1 (but before anything that gets appended | 49 /* Create a border under the h1 (but before anything that gets appended |
| 52 * to the end of the header, such as the managed prefs banner). */ | 50 * to the end of the header, such as the managed prefs banner). */ |
| 53 .page header > h1::after { | 51 .page header > h1::after { |
| 54 -webkit-margin-end: 20px; | 52 -webkit-margin-end: 20px; |
| 55 background-color: #eee; | 53 background-color: rgb(238, 238, 238); |
| 56 content: ''; | 54 content: ''; |
| 57 display: block; | 55 display: block; |
| 58 height: 1px; | 56 height: 1px; |
| 59 position: relative; | 57 position: relative; |
| 60 top: 13px; | 58 top: 13px; |
| 61 } | 59 } |
| 60 |
| 61 .page div { |
| 62 line-height: 29px; |
| 63 } |
| 64 |
| 65 #connectivity-status div { |
| 66 clear: both; |
| 67 float: left; |
| 68 position: relative; |
| 69 } |
| 70 |
| 71 .test-performed { |
| 72 color: rgb(70, 78, 90); |
| 73 } |
| 74 |
| 75 .test-pending { |
| 76 color: rgb(153, 153, 153); |
| 77 } |
| 78 |
| 79 .test-error { |
| 80 color: rgb(206, 57, 38); |
| 81 } |
| 82 |
| 83 div.recommendation { |
| 84 background: -webkit-gradient(linear, left top, left bottom, |
| 85 from(rgb(171, 253, 182)), |
| 86 to(rgb(94, 191, 107))); |
| 87 border: 1px solid rgb(17, 102, 27); |
| 88 line-height: 16px; |
| 89 padding: 2px; |
| 90 } |
| OLD | NEW |