| 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 .value { | 5 .value { |
| 6 font-family: monospace; | 6 font-family: monospace; |
| 7 font-style: italic; | 7 font-style: italic; |
| 8 } | 8 } |
| 9 | 9 |
| 10 .type { | 10 .type { |
| 11 color: blue; | 11 color: blue; |
| 12 font-family: monospace; | 12 font-family: monospace; |
| 13 } | 13 } |
| 14 | 14 |
| 15 .field { | 15 .field { |
| 16 font-weight: bold; | 16 font-weight: bold; |
| 17 font-family: monospace; | 17 font-family: monospace; |
| 18 } | 18 } |
| 19 | 19 |
| 20 .field_meta { | 20 .field_meta { |
| 21 text-align: left; | 21 text-align: left; |
| 22 background: rgb(240,240,240); | 22 background: rgb(240,240,240); |
| 23 display: block; | 23 display: block; |
| 24 } | 24 } |
| 25 | 25 |
| 26 .field_list { | 26 .field_list { |
| 27 margin-left: 1em; | 27 margin-left: 1em; |
| 28 } | 28 } |
| 29 | 29 |
| 30 .rule { |
| 31 display: block; |
| 32 border-style:solid; |
| 33 border-width:2px; |
| 34 } |
| 35 |
| 36 .rule_id { |
| 37 background: rgb(220,220,220); |
| 38 border-style:none solid solid none; |
| 39 border-width:2px; |
| 40 } |
| 41 |
| 42 .rule_id:before { |
| 43 content: "Rule "; |
| 44 } |
| 45 |
| 30 .snippet { | 46 .snippet { |
| 31 font-family: monospace; | 47 font-family: monospace; |
| 32 } | 48 } |
| 33 | 49 |
| 34 body { | 50 body { |
| 35 text-align: justify; | 51 text-align: justify; |
| 36 width:600px; | 52 width:600px; |
| 37 } | 53 } |
| 38 | 54 |
| 39 h1{font-size: 38px} | 55 h1{font-size: 38px} |
| 40 section h1{font-size: 32px} | 56 section h1{font-size: 32px} |
| 41 section section h1{font-size: 28px} | 57 section section h1{font-size: 28px} |
| 42 section section section h1{font-size: 24px} | 58 section section section h1{font-size: 24px} |
| 43 section section section section h1{font-size: 20px} | 59 section section section section h1{font-size: 20px} |
| 44 section section section section section h1{font-size: 18px} | 60 section section section section section h1{font-size: 18px} |
| 45 section section section section section section h1{font-size: 16px} | 61 section section section section section section h1{font-size: 16px} |
| 46 section section section section section section section h1{font-size: 14px} | 62 section section section section section section section h1{font-size: 14px} |
| OLD | NEW |