Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: samples/isolate_html/isolate_sample.css

Issue 23868034: Remove spawnDomFunction from dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « samples/isolate_html/deploy.sh ('k') | samples/isolate_html/isolate_sample.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « samples/isolate_html/deploy.sh ('k') | samples/isolate_html/isolate_sample.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698