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

Side by Side Diff: experimental/webtry/css/webtry.css

Issue 261693003: Use CodeMirror for WebTry snippets. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: design.md notes Created 6 years, 7 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 | « experimental/webtry/DESIGN.md ('k') | experimental/webtry/js/webtry.js » ('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 body {
2 font-family: helvetica arial sans-serif;
3 margin: 0;
4 padding: 0;
5 }
6
7 img {
8 box-shadow: 2px 2px 5px gray;
9 }
10
11 .zoom {
12 cursor: crosshair;
13 }
14
15 .zoomCanvas {
16 position: absolute;
17 width: 100%;
18 height: 100%;
19 top: 0;
20 left: 0;
21 z-index: -1;
22 }
23
24 h1 {
25 font-size: 18px;
26 }
27
28 h2 {
29 font-size: 16px;
30 }
31
32 .waiting, .waiting * {
33 cursor: wait;
34 }
35
36 textarea {
37 margin-left: 0;
38 border: solid 1px #ccc;
39 color: green;
40 background: #eee;
41 }
42
43 .iframe textarea {
44 resize: none;
45 }
46
47 template {
48 display: none;
49 }
50
51 code {
52 color: green;
53 }
54
55 pre, code {
56 padding: 0;
57 }
58
59 .tries {
60 margin: 1em;
61 float: left;
62 }
63
64 #title {
65 color: #ddd;
66 background: #444;
67 margin: 0;
68 padding: 0.5em;
69 }
70
71 #title a:link,
72 #title a:visited,
73 #title a:hover,
74 #title a:active
75 {
76 color: #ddd;
77 }
78
79 #content {
80 padding: 1em;
81 }
82
83 #tryHistory {
84 position: absolute;
85 top: 3em;
86 right: 10px;
87 width: 75px;
88 }
89
90 #tryHistory .tries {
91 float: none;
92 }
93
94 #gitInfo {
95 float: right;
96 font-size: 70%;
97 }
OLDNEW
« no previous file with comments | « experimental/webtry/DESIGN.md ('k') | experimental/webtry/js/webtry.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698