Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
7075 | obado | 1 | .extruder { |
2 | position:fixed; |
||
3 | cursor:default; |
||
4 | } |
||
5929 | obado | 5 | |
7075 | obado | 6 | .extruder .header { |
7 | height:27px; |
||
8 | } |
||
5929 | obado | 9 | |
7075 | obado | 10 | .extruder .content { |
11 | display:none; |
||
12 | background:#000; |
||
13 | padding:2em 0; |
||
14 | } |
||
15 | |||
16 | .extruder .content a { |
||
17 | color:#FFF; |
||
18 | } |
||
19 | |||
20 | .extruder .footer { |
||
21 | display:none; |
||
22 | height:10px; |
||
23 | background:#000; |
||
24 | -moz-box-shadow:2px 0 5px #999; |
||
25 | -webkit-box-shadow:2px 0 5px #999; |
||
26 | box-shadow:2px 0 5px #999; |
||
27 | } |
||
28 | |||
29 | /*********************/ |
||
30 | /*** EXTRUDER TOP ****/ |
||
31 | .extruder.top .flap { |
||
32 | color:#fff; |
||
33 | font:18px/28px Arial,Helvetica,sans-serif; |
||
34 | text-align:center; |
||
35 | display:block; |
||
36 | height:30px; |
||
37 | width:180px; |
||
38 | background:#000; |
||
39 | cursor:pointer; |
||
40 | -moz-box-shadow:2px 0 5px #999; |
||
41 | -webkit-box-shadow:2px 0 5px #999; |
||
42 | box-shadow:0 4px 4px #BBB; |
||
43 | text-shadow:2px 2px 2px #333; |
||
44 | margin:auto; |
||
45 | padding:0 5px 5px; |
||
46 | } |
||
47 | |||
48 | .extruder .footer, |
||
49 | .extruder.top .content, |
||
50 | .extruder.top .flap { |
||
51 | border-radius:0 0 8px 8px; |
||
52 | } |
||
53 | |||
54 | |||
55 | /*********************/ |
||
56 | /*** EXTRUDER BOTTOM ****/ |
||
57 | |||
58 | .extruder.bottom .flap { |
||
59 | position:relative; |
||
60 | color:#FFF; |
||
61 | font:18px/28px Arial,Helvetica,sans-serif; |
||
62 | text-align:center; |
||
63 | display:block; |
||
64 | height:30px; |
||
65 | width:180px; |
||
66 | background:#000; |
||
67 | cursor:pointer; |
||
68 | text-shadow:2px 2px 2px #333; |
||
69 | -moz-box-shadow:2px 0 5px #999; |
||
70 | -webkit-box-shadow:2px 0 5px #999; |
||
71 | box-shadow:0 -4px 4px #888; |
||
72 | margin:1px auto auto; |
||
73 | padding:0 5px 5px; |
||
74 | } |
||
75 | |||
76 | .extruder.bottom .footer { |
||
77 | border-radius:8px 8px 0 0; |
||
78 | position:relative; |
||
79 | margin-top:-5px; |
||
80 | } |
||
81 | |||
82 | .extruder.bottom .flap, |
||
83 | .extruder.bottom .content { |
||
84 | border-radius:08px 8px 0 0; |
||
85 | } |
||
86 | |||
87 | .extruder.bottom .ext_wrapper { |
||
88 | bottom:0; |
||
89 | } |
||
90 | |||
91 | |||
92 | /**********************/ |
||
93 | /*** EXTRUDER LEFT ****/ |
||
94 | |||
95 | .extruder.left .content { |
||
96 | border-right:3px solid #000; |
||
97 | } |
||
98 | .extruder.left .flap { |
||
99 | font-size:18px; |
||
100 | color:#FFF; |
||
101 | top:0; |
||
102 | margin-right:-37px; |
||
103 | background:#000; |
||
104 | width:30px; |
||
105 | position:absolute; |
||
106 | right:0; |
||
107 | border-radius:0 8px 8px 0; |
||
108 | -moz-box-shadow:2px 0 5px #999; |
||
109 | -webkit-box-shadow:2px 0 5px #999; |
||
110 | box-shadow:2px 0 5px #999; |
||
111 | padding:10px 0 10px 10px; |
||
112 | } |
||
113 | |||
114 | |||
115 | /**********************/ |
||
116 | /*** EXTRUDER RIGHT ****/ |
||
117 | |||
118 | .extruder.right .content { |
||
119 | border-left:3px solid #000; |
||
120 | margin:2em 0; |
||
121 | } |
||
122 | |||
123 | .extruder.right.open .content { |
||
124 | -moz-box-shadow:-2px 0 5px #999; |
||
125 | -webkit-box-shadow:-2px 0 5px #999; |
||
126 | box-shadow:-2px 0 5px #999; |
||
127 | } |
||
128 | |||
129 | .extruder.right .ext_wrapper { |
||
130 | height:100%; |
||
131 | right:0; |
||
132 | } |
||
133 | |||
134 | .extruder.right .flap { |
||
135 | font-size:18px; |
||
136 | color:#FFF; |
||
137 | top:0; |
||
138 | background:#000; |
||
139 | width:30px; |
||
140 | position:absolute; |
||
141 | left:-37px; |
||
142 | -moz-box-shadow:-2px 0 5px #999; |
||
143 | -webkit-box-shadow:-2px 0 5px #999; |
||
144 | box-shadow:-2px 0 5px #999; |
||
145 | padding:10px 0 10px 10px; |
||
146 | } |
||
147 | |||
148 | .extruder.right .flap,.extruder.right .content { |
||
149 | border-radius:8px 0 0 8px; |
||
150 | } |
||
151 | |||
152 | |||
153 | /*************************/ |
||
154 | /*** EXTRUDER VOICE ? ****/ |
||
155 | |||
156 | .extruder .voice { |
||
157 | font:18px/24px Arial,Helvetica,sans-serif; |
||
158 | color:#FFF; |
||
159 | height:27px; |
||
160 | border-bottom:1px solid #333; |
||
161 | text-shadow:2px 2px 2px #333; |
||
162 | position:relative; |
||
163 | padding:5px 5px 5px 10px; |
||
164 | } |
||
165 | |||
166 | .extruder .voice:last-child { |
||
167 | border-bottom:none; |
||
168 | } |
||
169 | |||
170 | .extruder .voice .disabled { |
||
171 | cursor:default; |
||
172 | } |
||
173 | |||
174 | .extruder .voice img { |
||
175 | float:left; |
||
176 | margin-right:15px; |
||
177 | } |
||
178 | |||
179 | .extruder .voice a.label { |
||
180 | display:block; |
||
181 | height:30px; |
||
182 | color:#FFF; |
||
183 | padding-top:0; |
||
184 | text-decoration:none; |
||
185 | } |
||
186 | |||
187 | .extruder .voice span.label { |
||
188 | display:block; |
||
189 | height:30px; |
||
190 | color:#d0cfcf; |
||
191 | padding-top:0; |
||
192 | text-decoration:none; |
||
193 | } |
||
194 | |||
195 | .extruder .settingsBtn { |
||
196 | display:block; |
||
197 | position:absolute; |
||
198 | width:36px; |
||
199 | height:36px; |
||
200 | background:url(../elements/settingsBtn.png) no-repeat bottom; |
||
201 | cursor:pointer; |
||
202 | right:-3px; |
||
203 | top:-4px; |
||
204 | } |
||
205 | |||
206 | .extruder .optionsPanel { |
||
207 | background:url(../elements/fuzz.gif); |
||
208 | display:none; |
||
209 | border-bottom:1px solid #333; |
||
210 | } |
||
211 | |||
212 | .optionsPanel .panelVoice a { |
||
213 | text-decoration:none; |
||
214 | display:block; |
||
215 | color:#ccc; |
||
216 | font-size:16px; |
||
217 | text-shadow:2px 2px 2px #333; |
||
218 | border-bottom:1px solid #000; |
||
219 | cursor:pointer; |
||
220 | padding:8px 8px 8px 20px; |
||
221 | } |
||
222 | |||
223 | .optionsPanel .panelVoice a:hover { |
||
224 | color:#fff; |
||
225 | background:url(../elements/red_op_50.png); |
||
226 | } |
||
227 | |||
228 | /*************************/ |
||
229 | /*** OTHERS ****/ |
||
230 | |||
231 | :focus { |
||
232 | outline:0; |
||
233 | } |
||
234 | |||
235 | .extruder.open .content,.extruder.left.open .content { |
||
236 | -moz-box-shadow:2px 0 5px #999; |
||
237 | -webkit-box-shadow:2px 0 5px #999; |
||
238 | box-shadow:2px 0 5px #999; |
||
239 | } |
||
240 | |||
241 | .extruder.isOpened .flap{ |
||
242 | box-shadow: none; |
||
243 | } |
||
244 | |||
245 | .extruder.left,.extruder.left .ext_wrapper,.extruder.right { |
||
246 | height:100%; |
||
247 | } |
||
248 | |||
249 | .extruder.left .footer,.extruder.right .footer { |
||
250 | display:none; |
||
251 | } |
||
252 | |||
253 | .extruder.left .flap .flapLabel,.extruder.right .flap .flapLabel { |
||
254 | background:#000; |
||
255 | } |
||
256 | |||
257 | .extruder .voice.hover,.extruder .voice.sel { |
||
258 | background:url(../elements/extruder_voiceHover.png) no-repeat top; |
||
259 | } |