/[Frey]/trunk/static/frey.css
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/static/frey.css

Parent Directory Parent Directory | Revision Log Revision Log


Revision 397 - (show annotations)
Tue Nov 18 01:45:44 2008 UTC (15 years, 5 months ago) by dpavlin
File MIME type: text/css
File size: 3033 byte(s)
show dumps < 1k, error can now accept multiple arguments
1 .frey-status-line {
2 border-top: 1px solid #aaa;
3 color: #444;
4 background-color: #eee;
5 font-size: 80%;
6 padding: 2px;
7 bottom: 0;
8 left: 0;
9 right: 0;
10 position: fixed;
11 z-index: 20;
12 opacity: .5;
13 filter: alpha(opacity=50);
14 }
15
16 .frey-status-line:hover {
17 opacity: 1;
18 filter: alpha(opacity=100);
19 }
20
21 /* style areas over which you can hoover */
22 .frey-popup,
23 .frey-popdown {
24 color: #00f;
25 padding: 3px;
26 }
27
28 .frey-popup:hover,
29 .frey-popdown:hover {
30 background: #eee;
31 text-decoration: underline;
32 }
33
34 .frey-popup span,
35 .frey-popup code,
36 .frey-popdown code {
37 display: none; /* hidden by default */
38 color: #000;
39 background: #eee;
40 border: 1px solid #aaa;
41 }
42
43 .frey-popup:hover code,
44 .frey-popup:hover span {
45 position: absolute;
46 display: block;
47 bottom: 1.25em;
48 left: 1.5em;
49 /*
50 right: 1.5em;
51 */
52 z-index: 30;
53 overflow: hidden;
54 }
55
56 .frey-popdown:hover code {
57 position: relative;
58 top: 0;
59 right: 0;
60 display: block;
61 z-index: 30;
62 }
63
64 .frey-popup code,
65 .frey-popdown code {
66 white-space: pre-wrap;
67 font-family: monospace;
68 }
69
70 /*
71 .frey-popup span {
72 color: #000;
73 background: #eee;
74 border: 1px solid #aaa;
75 }
76
77 */
78
79 .frey-popup span ul {
80 margin: 3px;
81 }
82
83 /* Frey::Instrospect */
84
85 .frey-skip {
86 font-size: 80%;
87 color: #aaa;
88 }
89
90 .frey-introspect tr th {
91 border-bottom: 1px dashed #ccc;
92 }
93
94 /* stop header from jumping around because of hover popup */
95 .frey-introspect tr th.p {
96 text-align: left;
97 }
98
99 .frey-introspect tr td {
100 vertical-align: top;
101 }
102
103 .frey-introspect tr td.m {
104 padding-right: 1em;
105 font-family: monospace;
106 }
107
108 .frey-introspect tr .a {
109 border-left: 1px dashed #ccc;
110 padding-left: 1em;
111 }
112
113 .frey-introspect tr td.a {
114 text-align: right;
115 font-family: monospace;
116 }
117
118 .frey-introspect tr td.t {
119 font-family: monospace;
120 padding-left: 1em;
121 }
122
123 .frey-introspect tr:hover {
124 background: #ffc;
125 }
126
127 .frey-introspect sup {
128 color: #ccc;
129 }
130
131
132 /* fix POD =head parts */
133 a.u {
134 text-decoration: none;
135 color: black;
136 }
137
138
139 /* dark background in sync with my vim setup */
140 .frey-source {
141 font-family: monospace;
142 background: #000;
143 color: #fff;
144 padding: 0.5em;
145 white-space: pre-wrap;
146 line-height: 1ex; /* compress lines to preserve memory footprint in browser for rendering */
147 }
148
149 .frey-source .keyword { color: #ff6; }
150 .frey-source .core { color: #ff6; }
151 /*
152 .frey-source .word { color: #6f6; }
153 */
154 .frey-source .pod { color: #6ff; }
155 .frey-source .comment { color: #6ff; }
156
157 .frey-source .symbol { color: #6ff; }
158 .frey-source .single { color: #f6f; }
159 .frey-source .double { color: #f6f; }
160
161
162 /* Frey::Dumper */
163
164 .frey-dumper {
165 color: #aaa;
166 }
167
168 .frey-dumper span {
169 color: #000;
170 }
171
172 .frey-dumper ul,
173 .frey-dumper ol {
174 margin-bottom: 0.5em;
175 list-style-position: inside;
176 }
177
178 .frey-dumper ul > li {
179 list-style: none;
180 }
181
182 /*
183 .frey-dumper ul:before {
184 content: "{";
185 }
186
187 .frey-dumper ul:after {
188 content: "}";
189 }
190
191 .frey-dumper ol:before {
192 content: "(";
193 }
194
195 .frey-dumper ol:after {
196 content: ")";
197 }
198 */
199
200 .frey-dumper a.blessed {
201 /*
202 text-decoration: none;
203 */
204 color: #aaa;
205 }
206
207 .frey-error {
208 border: 3px dashed #f00;
209 background: #ffc;
210 padding: 0.5em;
211 }
212

  ViewVC Help
Powered by ViewVC 1.1.26