OLD | NEW |
(Empty) | |
| 1 /* Copyright 2015 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 #back-to-devices { |
| 6 -webkit-padding-start: 10px; |
| 7 color: rgb(20, 86, 218); |
| 8 font-weight: bold; |
| 9 line-height: 2em; |
| 10 } |
| 11 |
| 12 #back-to-devices:hover { |
| 13 cursor: pointer; |
| 14 text-decoration: underline; |
| 15 } |
| 16 |
| 17 button { |
| 18 background: linear-gradient(to top, rgb(254, 254, 254), rgb(222, 222, 222)); |
| 19 } |
| 20 |
| 21 .device-name { |
| 22 font-weight: bold; |
| 23 } |
| 24 |
| 25 hr { |
| 26 margin: 0; |
| 27 } |
| 28 |
| 29 .route { |
| 30 -webkit-padding-start: 10px; |
| 31 line-height: 1.125em; |
| 32 } |
| 33 |
| 34 .route-status { |
| 35 color: rgb(125, 125, 125); |
| 36 margin: 8px 0; |
| 37 } |
| 38 |
| 39 .route-title { |
| 40 font-weight: bold; |
| 41 margin: 8px 0; |
| 42 overflow: hidden; |
| 43 } |
OLD | NEW |