Commit 1809002aa028f9f061bcae0c7981ce0948e9b287
1 parent
5f81ecc2
Exists in
master
and in
5 other branches
Style menu list footer
Showing
1 changed file
with
60 additions
and
13 deletions
Show diff stats
style.css
@@ -170,25 +170,12 @@ body { | @@ -170,25 +170,12 @@ body { | ||
170 | min-height: 48px; | 170 | min-height: 48px; |
171 | } | 171 | } |
172 | 172 | ||
173 | -/* Article Style */ | ||
174 | div#article-parent { | 173 | div#article-parent { |
175 | position: absolute; | 174 | position: absolute; |
176 | right: 0px; | 175 | right: 0px; |
177 | top: 0px; | 176 | top: 0px; |
178 | } | 177 | } |
179 | 178 | ||
180 | -/* Panel Right Style */ | ||
181 | -.box-1 { | ||
182 | - margin: 0 0 0 170px; | ||
183 | -} | ||
184 | - | ||
185 | -/* Panel Left Style */ | ||
186 | - | ||
187 | -.box-2 { | ||
188 | - width: 160px; | ||
189 | -} | ||
190 | - | ||
191 | - | ||
192 | /* Menu List left */ | 179 | /* Menu List left */ |
193 | 180 | ||
194 | #content .box-2 .block-title { | 181 | #content .box-2 .block-title { |
@@ -266,6 +253,21 @@ div#article-parent { | @@ -266,6 +253,21 @@ div#article-parent { | ||
266 | text-align: left; | 253 | text-align: left; |
267 | } | 254 | } |
268 | 255 | ||
256 | +/* Box styles */ | ||
257 | +.box-1 { | ||
258 | + margin: 0 0 0 170px; | ||
259 | +} | ||
260 | + | ||
261 | +.box-2 { | ||
262 | + width: 160px; | ||
263 | +} | ||
264 | + | ||
265 | +#content .box-3 .block { | ||
266 | + width: 210px; | ||
267 | + margin: 0px 0px 0px 30px; | ||
268 | + float: left; | ||
269 | +} | ||
270 | + | ||
269 | /* Editorial Area */ | 271 | /* Editorial Area */ |
270 | 272 | ||
271 | #content .box-1 .news-area { | 273 | #content .box-1 .news-area { |
@@ -383,3 +385,48 @@ div#article-parent { | @@ -383,3 +385,48 @@ div#article-parent { | ||
383 | #content .box-1 .block-footer-content a { | 385 | #content .box-1 .block-footer-content a { |
384 | position: relative; | 386 | position: relative; |
385 | } | 387 | } |
388 | + | ||
389 | + | ||
390 | +/* Menu List footer */ | ||
391 | + | ||
392 | +#content .box-3 .block-title { | ||
393 | + font-size: 12px; | ||
394 | + text-align: left; | ||
395 | + border-top: none; | ||
396 | + background: #FFF; | ||
397 | + border-bottom: none; | ||
398 | + color: #757575; | ||
399 | + padding: 5px; | ||
400 | + text-transform: uppercase; | ||
401 | + margin: 0; | ||
402 | +} | ||
403 | + | ||
404 | +#content .box-3 .link-list-block li a.link-this-page { | ||
405 | + width: auto; | ||
406 | + border-right: none; | ||
407 | + font-weight: bold; | ||
408 | + background-color: #eeefff; | ||
409 | + border-radius: 0px; | ||
410 | +} | ||
411 | + | ||
412 | +#content .box-3 .link-list-block li a { | ||
413 | + font-size: 14px; | ||
414 | + line-height: 1em; | ||
415 | + color: #545454; | ||
416 | + background-color: #FFF; | ||
417 | + border-radius: none; | ||
418 | + padding: 0.6em 1.5em; | ||
419 | +} | ||
420 | + | ||
421 | +#content .box-3 .link-list-block li a:hover { | ||
422 | + background-color: #FFF; | ||
423 | + color: #436976; | ||
424 | +} | ||
425 | + | ||
426 | +#content .box-3 .link-list-block li { | ||
427 | + border-bottom: none; | ||
428 | + border-top: none; | ||
429 | + padding: 0; | ||
430 | + margin: 0; | ||
431 | +} | ||
432 | + |