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 |
(...skipping 16 matching lines...) Expand all Loading... |
27 box-shadow: 0px 4px 10px 4px rgba(0,0,0,0.3); | 27 box-shadow: 0px 4px 10px 4px rgba(0,0,0,0.3); |
28 background-color: white; | 28 background-color: white; |
29 overflow: scroll; | 29 overflow: scroll; |
30 } | 30 } |
31 | 31 |
32 #text-log { | 32 #text-log { |
33 padding: 8px; | 33 padding: 8px; |
34 } | 34 } |
35 | 35 |
36 #pnacl-listener { | 36 #pnacl-listener { |
37 height: 0; | 37 height: 100px; |
| 38 } |
| 39 |
| 40 #pnacl-plugin { |
| 41 height: 100%; |
| 42 width: 100%; |
| 43 background-color: gray; |
38 } | 44 } |
39 | 45 |
40 .selectable { | 46 .selectable { |
41 -webkit-user-select: text; | 47 -webkit-user-select: text; |
42 cursor: text; | 48 cursor: text; |
43 } | 49 } |
44 | 50 |
45 .key-div { | 51 .key-div { |
46 border-radius: 4px; | 52 border-radius: 4px; |
47 border: 1px solid rgba(0, 0, 0, 0.3); | 53 border: 1px solid rgba(0, 0, 0, 0.3); |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 | 99 |
94 .chord-div.some-keys-still-pressed::after { | 100 .chord-div.some-keys-still-pressed::after { |
95 content: " \2716"; /* cross */ | 101 content: " \2716"; /* cross */ |
96 color: red; | 102 color: red; |
97 } | 103 } |
98 | 104 |
99 .controls { | 105 .controls { |
100 position: absolute; | 106 position: absolute; |
101 right: 8px; | 107 right: 8px; |
102 top: 8px; | 108 top: 8px; |
103 } | 109 } |
OLD | NEW |