OLD | NEW |
(Empty) | |
| 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 |
| 3 * found in the LICENSE file. */ |
| 4 |
| 5 body { |
| 6 color: black; |
| 7 font-family: Helvetica,Arial,sans-serif; |
| 8 font-size: 10pt; |
| 9 margin: 10px 20px; |
| 10 } |
| 11 |
| 12 section { |
| 13 margin-top: 50px; |
| 14 } |
| 15 |
| 16 table { |
| 17 border: 1px solid gray; |
| 18 border-spacing: 0; |
| 19 width: 600px; |
| 20 } |
| 21 |
| 22 thead { |
| 23 background-color: rgb(220, 240, 255); |
| 24 font-weight: bold; |
| 25 } |
| 26 |
| 27 tbody { |
| 28 border-top: 1px solid gray; |
| 29 height: 200px; |
| 30 overflow-x: hidden; |
| 31 overflow-y: scroll; |
| 32 } |
| 33 |
| 34 td { |
| 35 padding: 5px; |
| 36 text-align: left; |
| 37 } |
| 38 |
| 39 td::first-letter { |
| 40 text-transform: capitalize; |
| 41 } |
| 42 |
| 43 .confirmed, |
| 44 .valid { |
| 45 color: green; |
| 46 } |
| 47 |
| 48 .done { |
| 49 color: lightGray; |
| 50 } |
| 51 |
| 52 .invalid { |
| 53 color: red; |
| 54 } |
| 55 |
| 56 #directives-table td { |
| 57 width: 200px; |
| 58 } |
| 59 |
| 60 #sent-tokens-table td, |
| 61 #received-tokens-table td { |
| 62 width: 150px; |
| 63 } |
| 64 |
| 65 tbody, |
| 66 thead > tr { |
| 67 display: block; |
| 68 } |
OLD | NEW |