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 button { | |
6 border: 1px solid rgb(193, 193, 195); | |
7 color: rgb(44, 44, 44); | |
8 cursor: pointer; | |
9 font-size: 0.875em; | |
10 font-weight: bold; | |
11 height: 32px; | |
12 overflow: hidden; | |
13 text-align: center; | |
14 width: 100%; | |
15 } | |
16 | |
17 .button-secondary { | 5 .button-secondary { |
18 background: linear-gradient(to top, rgb(254, 254, 254), rgb(222, 222, 222)); | 6 background: linear-gradient(to top, rgb(254, 254, 254), rgb(222, 222, 222)); |
19 } | 7 } |
20 | 8 |
21 .button-action { | 9 .button-action { |
22 background: linear-gradient(to top, rgb(89, 158, 244), rgb(75, 134, 241)); | 10 background: linear-gradient(to top, rgb(89, 158, 244), rgb(75, 134, 241)); |
23 border: 1px solid rgb(55, 113, 206); | 11 border: 1px solid rgb(55, 113, 206); |
24 color: white; | 12 color: white; |
25 } | 13 } |
26 | 14 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 | 55 |
68 :host-context(html[dir='ltr']) .sad-face { | 56 :host-context(html[dir='ltr']) .sad-face { |
69 float: left; | 57 float: left; |
70 left: 4px; | 58 left: 4px; |
71 } | 59 } |
72 | 60 |
73 :host-context(html[dir='rtl']) .sad-face { | 61 :host-context(html[dir='rtl']) .sad-face { |
74 float: right; | 62 float: right; |
75 right: 4px; | 63 right: 4px; |
76 } | 64 } |
OLD | NEW |