Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright 2016 The LUCI Authors. All rights reserved. | |
| 2 * Use of this source code is governed under the Apache License, Version 2.0 | |
| 3 * that can be found in the LICENSE file. | |
| 4 */ | |
| 5 a { | |
| 6 text-decoration: none; | |
| 7 } | |
| 8 | |
| 9 a.active { | |
| 10 color: #d14836; | |
| 11 } | |
| 12 | |
| 13 a.link { | |
| 14 color: #15c; | |
| 15 } | |
| 16 | |
| 17 a.visited { | |
| 18 color: #61c; | |
| 19 } | |
| 20 | |
| 21 body { | |
| 22 font-family: Arial, sans-serif; | |
| 23 font-size: 13px; | |
| 24 } | |
| 25 | |
| 26 div.notice { | |
| 27 background: #f9edbe; | |
| 28 color: #333; | |
| 29 outline: #f0c36d 1px solid; | |
| 30 padding: 8px; | |
| 31 } | |
| 32 | |
| 33 table { | |
| 34 border: none; | |
| 35 } | |
| 36 | |
| 37 td { | |
| 38 color: #333; | |
| 39 padding-left: 6px; | |
| 40 padding-right: 6px; | |
| 41 white-space: nowrap; | |
| 42 } | |
| 43 | |
| 44 th { | |
| 45 background: #f5f5f5; | |
| 46 font-weight: normal; | |
| 47 padding-left: 6px; | |
| 48 padding-right: 6px; | |
| 49 text-align: left; | |
| 50 } | |
| 51 | |
| 52 tr:hover { | |
| 53 background: #d4e8ff; | |
| 54 } | |
| OLD | NEW |