OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 | 5 |
6 body { | 6 body { |
7 -webkit-user-select: none; | 7 -webkit-user-select: none; |
8 background: #fff; | 8 background: #fff; |
9 margin: 0; | 9 margin: 0; |
10 overflow: hidden; | 10 overflow: hidden; |
11 padding: 0; | 11 padding: 0; |
12 } | 12 } |
13 | 13 |
14 .keyboard-overlay-keyboard { | 14 .keyboard-overlay-keyboard { |
15 background: -webkit-linear-gradient(#484848, #252525) no-repeat; | 15 background: -webkit-linear-gradient(#484848, #252525) no-repeat; |
16 background-color: #252525; | 16 background-color: #252525; |
17 border-radius: 6px; | 17 border-radius: 6px; |
18 font-family: 'Noto Sans UI', ui-sans; | |
19 } | 18 } |
20 | 19 |
21 .keyboard-overlay-instructions { | 20 .keyboard-overlay-instructions { |
22 -webkit-box-orient: vertical; | 21 -webkit-box-orient: vertical; |
23 background: -webkit-linear-gradient(rgb(51, 76, 126), rgb(13, 23, 43)); | 22 background: -webkit-linear-gradient(rgb(51, 76, 126), rgb(13, 23, 43)); |
24 border: 2px solid rgb(87, 108, 207); | 23 border: 2px solid rgb(87, 108, 207); |
25 border-radius: 5px; | 24 border-radius: 5px; |
26 color: #fff; | 25 color: #fff; |
27 display: -webkit-box; | 26 display: -webkit-box; |
28 position: absolute; | 27 position: absolute; |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 | 178 |
180 .keyboard-overlay-key-text { | 179 .keyboard-overlay-key-text { |
181 -webkit-box-ordinal-group: 2; | 180 -webkit-box-ordinal-group: 2; |
182 padding: 0 3px 2px; | 181 padding: 0 3px 2px; |
183 text-align: center; | 182 text-align: center; |
184 } | 183 } |
185 | 184 |
186 .keyboard-overlay-key.is-shortcut .keyboard-overlay-key-text { | 185 .keyboard-overlay-key.is-shortcut .keyboard-overlay-key-text { |
187 opacity: 0.25; | 186 opacity: 0.25; |
188 } | 187 } |
OLD | NEW |