OLD | NEW |
(Empty) | |
| 1 /* Copyright 2016 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 |
| 6 .connecting { |
| 7 animation: glowing 1500ms infinite; |
| 8 background-color: #004A7F; |
| 9 border-radius: 10px; |
| 10 border: none; |
| 11 color: #FFFFFF; |
| 12 cursor: pointer; |
| 13 font-size: 20px; |
| 14 margin: 1px; |
| 15 outline: none; |
| 16 padding: 5px 10px; |
| 17 width: 170px; |
| 18 } |
| 19 |
| 20 .disconnected { |
| 21 background-color: #004A7F; |
| 22 border-radius: 10px; |
| 23 border: none; |
| 24 color: #FFFFFF; |
| 25 cursor: pointer; |
| 26 font-size: 20px; |
| 27 margin: 1px; |
| 28 outline: none; |
| 29 padding: 5px 10px; |
| 30 width: 170px; |
| 31 } |
| 32 |
| 33 .connected { |
| 34 background-color: #0094FF; |
| 35 border-radius: 10px; |
| 36 border: none; |
| 37 box-shadow: 0 0 20px #0094FF; |
| 38 color: #FFFFFF; |
| 39 cursor: pointer; |
| 40 font-size: 20px; |
| 41 margin: 1px; |
| 42 outline: none; |
| 43 padding: 5px 10px; |
| 44 width: 170px; |
| 45 } |
| 46 |
| 47 @keyframes glowing { |
| 48 0% { |
| 49 background-color: #004A7F; |
| 50 box-shadow: 0 0 3px #004A7F; |
| 51 } |
| 52 50% { |
| 53 background-color: #0094FF; |
| 54 box-shadow: 0 0 10px #0094FF; |
| 55 } |
| 56 100% { |
| 57 background-color: #004A7F; |
| 58 box-shadow: 0 0 3px #004A7F; |
| 59 } |
| 60 } |
OLD | NEW |