| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2011 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 body { | 7 body { |
| 8 background: -webkit-linear-gradient(#131925, #04070B); | 8 background: -webkit-linear-gradient(#131925, #04070B); |
| 9 color: white; | 9 color: white; |
| 10 margin: 0; | 10 margin: 0; |
| 11 overflow: hidden; |
| 11 padding: 0; | 12 padding: 0; |
| 12 -webkit-user-select: none; | 13 -webkit-user-select: none; |
| 13 } | 14 } |
| 14 | 15 |
| 15 div.row { | 16 div.row { |
| 16 margin-top: 5px; | 17 margin-top: 5px; |
| 17 } | 18 } |
| 18 | 19 |
| 19 .ime { | 20 .ime { |
| 20 border: 1px solid gray; | 21 border: 1px solid gray; |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 } | 118 } |
| 118 | 119 |
| 119 .shift { | 120 .shift { |
| 120 background-image: url("shift.svg"); | 121 background-image: url("shift.svg"); |
| 121 } | 122 } |
| 122 | 123 |
| 123 .hide { | 124 .hide { |
| 124 background-image: url("keyboard.svg"); | 125 background-image: url("keyboard.svg"); |
| 125 } | 126 } |
| 126 | 127 |
| OLD | NEW |