OLD | NEW |
(Empty) | |
| 1 /* |
| 2 Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3 for details. All rights reserved. Use of this source code is governed by a |
| 4 BSD-style license that can be found in the LICENSE file. |
| 5 */ |
| 6 |
| 7 body { |
| 8 background: #f7f7f7; |
| 9 color: #333; |
| 10 } |
| 11 |
| 12 h1, p { |
| 13 font-family: 'Open Sans', Arial; |
| 14 } |
| 15 |
| 16 h1 { |
| 17 margin-bottom: 40px; |
| 18 } |
| 19 |
| 20 code { |
| 21 color: #b33; |
| 22 font-weight: bold; |
| 23 } |
| 24 |
| 25 #content { |
| 26 background: #fff; |
| 27 border: 1px solid #e1e1e1; |
| 28 -webkit-border-radius: 8px; |
| 29 -moz-border-radius: 8px; |
| 30 border-radius: 8px; |
| 31 -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); |
| 32 -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); |
| 33 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); |
| 34 margin: 40px auto; |
| 35 padding: 40px; |
| 36 width: 880px; |
| 37 } |
OLD | NEW |