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

  ViewVC Help
Powered by ViewVC 1.1.26