| OLD | NEW |
| (Empty) |
| 1 /* Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file */ | |
| 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. */ | |
| 4 | |
| 5 #appTitle { | |
| 6 font-size: 20px; | |
| 7 } | |
| 8 | |
| 9 .isolate { | |
| 10 border: 2px solid green; | |
| 11 margin: 20px; | |
| 12 width: 400px; | |
| 13 height: 200px; | |
| 14 padding: 10px; | |
| 15 } | |
| 16 | |
| 17 #isolateTemplate { | |
| 18 display: none; | |
| 19 } | |
| 20 | |
| 21 .isolateMain { | |
| 22 background-image: -webkit-gradient(linear,left bottom,right top,from(white),to
(lightgray)); | |
| 23 } | |
| 24 | |
| 25 .isolateA { | |
| 26 background-image: -webkit-gradient(linear,left bottom,right top,from(lightgree
n),to(lightgray)); | |
| 27 } | |
| 28 | |
| 29 .isolateB { | |
| 30 background-image: -webkit-gradient(linear,left bottom,right top,from(#0099FF),
to(lightgray)); | |
| 31 } | |
| 32 | |
| 33 .isolateTitle { | |
| 34 font-size: 20px; | |
| 35 } | |
| 36 | |
| 37 .messageBox { | |
| 38 padding: 2px; | |
| 39 border: 1px solid black; | |
| 40 background: white; | |
| 41 height: 50%; | |
| 42 } | |
| 43 | |
| 44 .messageText { | |
| 45 font-weight: bold; | |
| 46 } | |
| 47 | |
| 48 .replyText { | |
| 49 font-size: 18px; | |
| 50 font-weight: bold; | |
| 51 margin-top: 10px; | |
| 52 } | |
| 53 | |
| 54 #greetingText { | |
| 55 margin-top: 15px; | |
| 56 } | |
| 57 | |
| 58 .delayTextbox { | |
| 59 width: 60px; | |
| 60 text-align: right; | |
| 61 } | |
| 62 | |
| 63 .spacer { | |
| 64 margin-top: 50px; | |
| 65 } | |
| 66 | |
| 67 .systemInfo { | |
| 68 font-size: 14px; | |
| 69 } | |
| 70 | |
| 71 #vmStatus { | |
| 72 font-weight: bold; | |
| 73 } | |
| 74 | |
| 75 .chirpButton { | |
| 76 float: right; | |
| 77 } | |
| OLD | NEW |