OLD | NEW |
---|---|
1 | 1 |
2 /* Copyright 2017 The Chromium Authors. All rights reserved. | 2 /* Copyright 2017 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 body { |
6 color: rgb(48, 57, 66); | |
7 margin:15px; | |
8 } | |
6 p { | 9 p { |
7 white-space: pre-wrap; | 10 white-space: pre-wrap; |
8 } | 11 } |
12 | |
13 .experiments { | |
14 background-color: #fbfbfb; | |
vakh (use Gerrit instead)
2017/07/07 00:23:40
interesting choice of color :)
| |
15 border: 1px solid #cecece; | |
16 border-radius: 3px; | |
17 padding: 19px; | |
18 line-height: 1.5; | |
19 } | |
20 | |
21 #sbTitle { | |
22 font-size: 2em; | |
23 margin-bottom: 0.8em; | |
24 } | |
25 | |
26 h1, h2, h3, p { | |
27 font-weight: normal; | |
28 line-height: 1; | |
29 user-select: none; | |
30 } | |
OLD | NEW |