| OLD | NEW |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 */ | |
| 5 | 4 |
| 6 body { | 5 body { |
| 7 background-color: #E6E6E6; | 6 background-color: #E6E6E6; |
| 8 font-size: 12pt; | 7 font-size: 12pt; |
| 9 margin: 50px 40px 20px 40px; | 8 margin: 50px 40px 20px 40px; |
| 10 text-align: center; | 9 text-align: center; |
| 11 } | 10 } |
| 12 | 11 |
| 13 #container { | 12 #container { |
| 14 background-color: #fbfbfb; | 13 background-color: #fbfbfb; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 38 border-radius: 2px; | 37 border-radius: 2px; |
| 39 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), | 38 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), |
| 40 inset 0 1px 2px rgba(255, 255, 255, 0.75); | 39 inset 0 1px 2px rgba(255, 255, 255, 0.75); |
| 41 margin-top: 10px; | 40 margin-top: 10px; |
| 42 min-height: 29px; | 41 min-height: 29px; |
| 43 min-width: 65px; | 42 min-width: 65px; |
| 44 padding: 8px 13px; | 43 padding: 8px 13px; |
| 45 text-shadow: 0 1px 0 rgb(240, 240, 240); | 44 text-shadow: 0 1px 0 rgb(240, 240, 240); |
| 46 } | 45 } |
| 47 | 46 |
| OLD | NEW |