| OLD | NEW |
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 Use of this source code is governed by a BSD-style license that can be |
| 3 found in the LICENSE file. */ | 3 found in the LICENSE file. */ |
| 4 | 4 |
| 5 paper-button[raised].colored { |
| 6 background: rgb(66, 133, 244); |
| 7 color: #fff; |
| 8 } |
| 9 |
| 5 paper-input { | 10 paper-input { |
| 6 -webkit-margin-start: 15px; | 11 -webkit-margin-start: 15px; |
| 7 display: inline-block; | 12 display: inline-block; |
| 8 width: 200px; | 13 width: 200px; |
| 9 } | 14 } |
| 10 | 15 |
| 11 paper-toggle-button { | 16 paper-toggle-button { |
| 12 -webkit-margin-start: 15px; | 17 -webkit-margin-start: 15px; |
| 13 } | 18 } |
| 14 | 19 |
| 15 paper-slider { | |
| 16 -webkit-margin-start: 15px; | |
| 17 } | |
| 18 | |
| 19 paper-radio-button { | |
| 20 display: inline-block; | |
| 21 } | |
| 22 | |
| 23 .element-label { | 20 .element-label { |
| 24 -webkit-padding-start: 0; | 21 -webkit-padding-start: 0; |
| 25 color: rgb(82, 101, 162); | 22 color: rgb(82, 101, 162); |
| 23 display: block; |
| 26 font-size: 24px; | 24 font-size: 24px; |
| 27 font-weight: normal; | 25 font-weight: normal; |
| 28 height: 80px; | 26 height: 80px; |
| 29 letter-spacing: 0.05em; | 27 letter-spacing: 0.05em; |
| 30 line-height: 80px; | 28 line-height: 80px; |
| 31 } | 29 } |
| 30 |
| 31 .device-container { |
| 32 border-radius: 2px; |
| 33 margin: 10px; |
| 34 width: 80%; |
| 35 } |
| 36 |
| 37 .device-field { |
| 38 margin-bottom: 1em; |
| 39 margin-top: 1em; |
| 40 } |
| 41 |
| 42 .audio-node { |
| 43 margin: 1px; |
| 44 } |
| 45 |
| 46 .toggle-button-label { |
| 47 margin: 15px; |
| 48 } |
| OLD | NEW |