OLD | NEW |
1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2014 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 height: calc(100% - 12px); | 7 height: calc(100% - 12px); |
8 overflow: auto; | 8 overflow: auto; |
9 } | 9 } |
10 | 10 |
11 html { | 11 html { |
12 height: 100%; | 12 height: 100%; |
13 } | 13 } |
14 | 14 |
| 15 #pnacl-plugin { |
| 16 background-color: gray; |
| 17 border: 1px solid |
| 18 } |
| 19 |
| 20 #pnacl-plugin:focus { |
| 21 background-color: yellow; |
| 22 } |
| 23 |
| 24 .log-container { |
| 25 width: 45%; |
| 26 max-height: 80vh; |
| 27 overflow-y: auto; |
| 28 float: left; |
| 29 } |
| 30 |
15 .key-down, | 31 .key-down, |
16 .key-up { | 32 .key-up { |
17 border-radius: 4px; | 33 border-radius: 4px; |
18 border: 1px solid rgba(0, 0, 0, 0.3); | 34 border: 1px solid rgba(0, 0, 0, 0.3); |
19 padding: 2px; | 35 padding: 2px; |
20 margin-right: 2px; | 36 margin-right: 2px; |
21 } | 37 } |
22 | 38 |
23 .key-up { | 39 .key-up { |
24 background-color: #DFD; | 40 background-color: #DFD; |
(...skipping 29 matching lines...) Expand all Loading... |
54 | 70 |
55 .chord-div.all-keys-released::after { | 71 .chord-div.all-keys-released::after { |
56 content: " \2714"; /* tick */ | 72 content: " \2714"; /* tick */ |
57 color: green; | 73 color: green; |
58 } | 74 } |
59 | 75 |
60 .chord-div.some-keys-still-pressed::after { | 76 .chord-div.some-keys-still-pressed::after { |
61 content: " \2716"; /* cross */ | 77 content: " \2716"; /* cross */ |
62 color: red; | 78 color: red; |
63 } | 79 } |
OLD | NEW |