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

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

Issue 292433002: Move zooming into its own component, imported via HTML Imports. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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
OLDNEW
1 body { 1 body {
2 font-family: helvetica arial sans-serif; 2 font-family: helvetica arial sans-serif;
3 margin: 0; 3 margin: 0;
4 padding: 0; 4 padding: 0;
5 } 5 }
6 6
7 img { 7 img {
8 box-shadow: 2px 2px 5px gray; 8 box-shadow: 2px 2px 5px gray;
9 background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQC AAAAAA6mKC9AAAAAXNSR0IArs4c6QAAAAJiS0dEAP+Hj8y/AAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAB 3RJTUUH3gUBEi4DGRAQYgAAAB1JREFUGNNjfMoAAVJQmokBDdBHgPE/lPFsYN0BABdaAwN6tehMAAAAA ElFTkSuQmCC"); 9 background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQC AAAAAA6mKC9AAAAAXNSR0IArs4c6QAAAAJiS0dEAP+Hj8y/AAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAB 3RJTUUH3gUBEi4DGRAQYgAAAB1JREFUGNNjfMoAAVJQmokBDdBHgPE/lPFsYN0BABdaAwN6tehMAAAAA ElFTkSuQmCC");
10 } 10 }
11 11
12 .zoom {
13 cursor: crosshair;
14 }
15
16 .zoomCanvas {
17 position: absolute;
18 width: vmin;
19 height: vmin;
20 top: 3em;
21 right: 1em;
22 z-index: -1;
23 }
24
25 #zoomCopy {
26 display: none;
27 }
28
29 #zoomHex {
30 text-shadow: 1px 1px #eee;
31 }
32 12
33 h1 { 13 h1 {
34 font-size: 18px; 14 font-size: 18px;
35 } 15 }
36 16
37 h2 { 17 h2 {
38 font-size: 16px; 18 font-size: 16px;
39 } 19 }
40 20
41 .waiting, .waiting * { 21 .waiting, .waiting * {
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 87
108 .CodeMirror-lines, 88 .CodeMirror-lines,
109 .CodeMirror-scroll 89 .CodeMirror-scroll
110 { 90 {
111 background-color: #eee; 91 background-color: #eee;
112 } 92 }
113 93
114 .CodeMirror { 94 .CodeMirror {
115 border: solid gray 1px; 95 border: solid gray 1px;
116 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698