OLD | NEW |
---|---|
(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 } | |
OLD | NEW |