| OLD | NEW |
| 1 /* Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file */ | 1 /* Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file */ |
| 2 /* for details. All rights reserved. Use of this source code is governed by a */ | 2 /* for details. All rights reserved. Use of this source code is governed by a */ |
| 3 /* BSD-style license that can be found in the LICENSE file. */ | 3 /* BSD-style license that can be found in the LICENSE file. */ |
| 4 | |
| 5 body { | 4 body { |
| 6 background-color: #F8F8F8; | 5 background-color: #F8F8F8; |
| 7 font-family: 'Open Sans', sans-serif; | 6 font-family: 'Open Sans', sans-serif; |
| 8 font-size: 14px; | 7 font-size: 14px; |
| 9 font-weight: normal; | 8 font-weight: normal; |
| 10 line-height: 1.2em; | 9 line-height: 1.2em; |
| 11 margin: 15px; | 10 margin: 15px; |
| 12 } | 11 } |
| 13 | 12 |
| 14 p { | 13 h1, p { |
| 15 color: #333; | 14 color: #333; |
| 16 } | 15 } |
| 17 | 16 |
| 18 #container { | 17 #sample_container_id { |
| 19 width: 100%; | 18 width: 100%; |
| 20 height: 400px; | 19 height: 400px; |
| 20 position: relative; |
| 21 border: 1px solid #ccc; | 21 border: 1px solid #ccc; |
| 22 background-color: #fff; | 22 background-color: #fff; |
| 23 } | 23 } |
| 24 | 24 |
| 25 #summary { | |
| 26 float: left; | |
| 27 } | |
| 28 | 25 |
| 29 #notes { | |
| 30 float: right; | |
| 31 width: 120px; | |
| 32 text-align: right; | |
| 33 } | |
| 34 | |
| 35 .error { | |
| 36 font-style: italic; | |
| 37 color: red; | |
| 38 } | |
| OLD | NEW |