| 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 */ | 4 */ |
| 5 | 5 |
| 6 body { | 6 body { |
| 7 background-color: #E6E6E6; | 7 background-color: #E6E6E6; |
| 8 font-family: Helvetica, Arial, sans-serif; | |
| 9 font-size: 12pt; | 8 font-size: 12pt; |
| 10 margin: 50px 40px 20px 40px; | 9 margin: 50px 40px 20px 40px; |
| 11 text-align: center; | 10 text-align: center; |
| 12 } | 11 } |
| 13 | 12 |
| 14 #container { | 13 #container { |
| 15 background-color: #fbfbfb; | 14 background-color: #fbfbfb; |
| 16 border: 1px solid #AAA; | 15 border: 1px solid #AAA; |
| 17 border-bottom: 1px solid #888; | 16 border-bottom: 1px solid #888; |
| 18 border-radius: 3px; | 17 border-radius: 3px; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 39 border-radius: 2px; | 38 border-radius: 2px; |
| 40 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), | 39 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), |
| 41 inset 0 1px 2px rgba(255, 255, 255, 0.75); | 40 inset 0 1px 2px rgba(255, 255, 255, 0.75); |
| 42 margin-top: 10px; | 41 margin-top: 10px; |
| 43 min-height: 29px; | 42 min-height: 29px; |
| 44 min-width: 65px; | 43 min-width: 65px; |
| 45 padding: 8px 13px; | 44 padding: 8px 13px; |
| 46 text-shadow: 0 1px 0 rgb(240, 240, 240); | 45 text-shadow: 0 1px 0 rgb(240, 240, 240); |
| 47 } | 46 } |
| 48 | 47 |
| OLD | NEW |