OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2016 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. |
| 5 */ |
| 6 |
| 7 div { |
| 8 display: inline-block; |
| 9 height: 14px; |
| 10 vertical-align: middle; |
| 11 white-space: nowrap; |
| 12 padding: 1px 4px; |
| 13 text-align: left; |
| 14 font-size: 11px; |
| 15 line-height: normal; |
| 16 font-weight: bold; |
| 17 text-shadow: none; |
| 18 color: white; |
| 19 margin-top: -1px; |
| 20 border-radius: 7px; |
| 21 } |
| 22 |
| 23 div.info { |
| 24 background-color: rgb(128, 151, 189); |
| 25 } |
| 26 |
| 27 div.debug { |
| 28 background-color: rgb(0, 0, 255); |
| 29 } |
| 30 |
| 31 div.warning { |
| 32 background-color: rgb(232, 164, 0); |
| 33 } |
| 34 |
| 35 div.error { |
| 36 background-color: rgb(216, 35, 35); |
| 37 } |
OLD | NEW |