OLD | NEW |
(Empty) | |
| 1 /* Copyright 2013 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 :host { |
| 6 -webkit-transition: opacity 400ms ease-in-out; |
| 7 position: fixed; |
| 8 right: 0; |
| 9 } |
| 10 |
| 11 #text { |
| 12 background-color: rgba(0, 0, 0, 0.5); |
| 13 border-radius: 5px; |
| 14 color: white; |
| 15 float: left; |
| 16 font-family: sans-serif; |
| 17 font-size: 12px; |
| 18 font-weight: bold; |
| 19 line-height: 48px; |
| 20 text-align: center; |
| 21 text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8); |
| 22 width: 62px; |
| 23 } |
| 24 |
| 25 #triangle-right { |
| 26 border-bottom: 6px solid transparent; |
| 27 border-left: 8px solid rgba(0, 0, 0, 0.5); |
| 28 border-top: 6px solid transparent; |
| 29 display: inline; |
| 30 float: left; |
| 31 height: 0; |
| 32 margin-top: 18px; |
| 33 width: 0; |
| 34 } |
OLD | NEW |