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

  ViewVC Help
Powered by ViewVC 1.1.26