OLD | NEW |
1 /* | 1 /* |
2 Copyright (c) 2013 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2013 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. | 4 found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 @font-face { | 7 @font-face { |
8 font-family: roboto-bold; | 8 font-family: roboto-bold; |
9 src: url(roboto_bold.ttf); | 9 src: url(roboto_bold.ttf); |
10 } | 10 } |
11 | 11 |
12 body { | 12 body { |
13 -webkit-user-select: none; | 13 -webkit-user-select: none; |
14 background-image: -webkit-linear-gradient(#282828, #000000); | 14 background-image: -webkit-linear-gradient(#282828, #000000); |
15 background-size: cover; | 15 background-size: cover; |
| 16 cursor: default; |
16 margin: 0; | 17 margin: 0; |
17 overflow: hidden; | 18 overflow: hidden; |
18 padding: 0; | 19 padding: 0; |
19 } | 20 } |
20 | 21 |
21 kb-keyboard.ctrl-active kb-modifier-key[char=Ctrl], | 22 kb-keyboard.ctrl-active kb-modifier-key[char=Ctrl], |
22 kb-keyboard.alt-active kb-modifier-key[char=Alt], | 23 kb-keyboard.alt-active kb-modifier-key[char=Alt], |
23 /** | 24 /** |
24 * Controls whether the shift key should be highlighted or not. | 25 * Controls whether the shift key should be highlighted or not. |
25 * Only highlights if we are in the upper keyset, but not capslocked. | 26 * Only highlights if we are in the upper keyset, but not capslocked. |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 | 60 |
60 .audio .microphone [part=key] { | 61 .audio .microphone [part=key] { |
61 background-image: url('images/microphone-green.svg'); | 62 background-image: url('images/microphone-green.svg'); |
62 } | 63 } |
63 | 64 |
64 kb-key.search [part=key]{ | 65 kb-key.search [part=key]{ |
65 margin-left: 0px; | 66 margin-left: 0px; |
66 padding-left: 0px; | 67 padding-left: 0px; |
67 width: 2em; | 68 width: 2em; |
68 } | 69 } |
OLD | NEW |