OLD | NEW |
---|---|
(Empty) | |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 * Use of this source code is governed by a BSD-style license that can be | |
3 * found in the LICENSE file. | |
4 */ | |
5 | |
6 html, body { | |
7 font-family: Arial, Helvetica, sans-serif; | |
8 font-size: 13px; | |
9 height: 100%; | |
10 margin: 0; | |
11 overflow: hidden; | |
xiyuan
2012/03/01 23:15:56
nit: "width: 100%"?
rkc
2012/03/02 00:10:19
Done.
| |
12 } | |
13 | |
14 #main-box { | |
15 border: 1px solid black; | |
16 } | |
17 | |
18 #title { | |
19 background: -webkit-linear-gradient(left, white, #dadada); | |
20 border-bottom: 1px solid #bbb; | |
21 font-weight: bold; | |
22 padding: 10px; | |
23 } | |
24 | |
25 #warning { | |
26 padding: 10px; | |
27 } | |
OLD | NEW |