Dotclear

source: themes/ductile/style.css @ 631:c585ca34f513

Revision 631:c585ca34f513, 21.0 KB checked in by kozlika, 14 years ago (diff)

Ductile - Compat IE ≤ 8

Line 
1@charset "UTF-8";
2/* -- BEGIN LICENSE BLOCK ---------------------------------------
3# This file is part of Ductile, a theme for Dotclear
4#
5# Copyright (c) 2011 - Association Dotclear
6# Licensed under the GPL version 2.0 license.
7# See LICENSE file or
8# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
9#
10# -- END LICENSE BLOCK ----------------------------------------- */
11
12/* Infos
13Plan de cette feuille :
141. Structure, imports
152. Liens, html
163. Page
174. Haut de page
185. Wrapper, main, content
196. Billets
207. Commentaires et rétroliens
218. Sidebar
229. Footer
2310. Classes communes
2411. Pages spécifiques
2512. Clearers
26
27Couleurs :
28Typo: #222 courant, #4c4c85 commentaires
29Titres non cliquables: #14709e
30Liens: #666 courant, #ad3f4c titre billet et Lire la suite
31Fond formulaire comm: #eef
32Fond sidebar: #ededed
33
34Thanks to:
35Colorzilla wysiwyg gradient editor http://www.colorzilla.com/gradient-editor/
36*/
37
38/* -----------------------------------------------------------------
39     1. STRUCTURE - IMPORTS
40------------------------------------------------------------------ */
41
42@import url(rebase.css);
43@import url(mediaqueries.css);
44
45/* ------------------------------------------------------- body */
46body {
47     background: #fff;
48     font-family: "New Century Schoolbook","Century Schoolbook", "Century Schoolbook L", Georgia, serif;
49     color: #222;
50     }
51
52/* ------------------------------------------------------------
53     2. LIENS & Complément balises HTML
54------------------------------------------------------------- */
55del {
56     color: #800000;
57     }
58blockquote {
59     border: 2px solid #eef;
60     padding: 1px 1em .5em;
61     }
62code, pre {
63     background: #efefef;
64     border-right: 1px solid #aaa;
65     border-bottom: 1px solid #aaa;
66     font-size: .81em;
67     }
68pre {
69     white-space: normal;
70     }
71
72a {
73     color: #666;
74     }
75a:hover, a:focus {
76     background-color: #ebebee;
77     text-decoration: none;
78     }
79
80/* ------------------------------------------------------------
81     3. PAGE
82------------------------------------------------------------- */
83
84#page {
85     position: relative;
86     }
87
88/* ------------------------------------------------------------
89     4. HAUT DE PAGE
90------------------------------------------------------------- */
91#header {
92     text-shadow: 0 1px 1px rgba(0,0,0,.2);
93     line-height: 1;
94     }
95#logo a img, #stickers a img {
96     border: none;
97}
98h1 {
99     font-variant: small-caps;
100     }
101h1 a {
102     text-decoration: none;
103     color: #333;
104     }
105#blogdesc {
106     margin: 0 0 0 32px;
107     font-family: "Franklin gothic medium","arial narrow","DejaVu Sans Condensed","helvetica neue",helvetica,sans-serif;
108     font-style: italic;
109     color: #888;
110     text-shadow: none;
111     }
112.supranav, #prelude {
113     font-family: "Franklin gothic medium","arial narrow","DejaVu Sans Condensed","helvetica neue",helvetica,sans-serif;
114     padding: 0 0 0 4px;
115     list-style-type: none;
116     line-height: 1.25;
117     font-size: .875em;
118     }
119.supranav li, #prelude li {
120     text-transform: uppercase;
121     vertical-align: top;
122     }
123.supranav {
124     clear: both;
125     }
126.supranav li a {
127     text-decoration: none;
128     white-space: nowrap;
129     margin-bottom: 4px;
130     -webkit-border-bottom-left-radius: 7px;
131     -moz-border-radius-bottomleft: 7px;
132     border-bottom-left-radius: 7px;   
133     background: transparent url(img/menu.png) no-repeat right top;
134 }
135.supranav li a:hover, 
136.supranav li a:active, 
137.supranav li a:focus {
138     background-color: #ebebee;
139     background-position: right -150px;
140     }
141.supranav li.active a {
142     background-position: right -150px;
143     color: #14709e;
144     }
145.supranav li a span {
146     display: block;
147     text-transform: none;
148     text-shadow: none;
149     font-family: georgia;
150     font-style:italic;
151     }
152
153/* ------------------------------------------------------------
154     5. WRAPPER MAIN CONTENT
155------------------------------------------------------------- */
156
157#wrapper { clear:both; }
158#main { }
159#content { 
160     padding-bottom: 2em; 
161     }
162
163/* ------------------------------------------------------- content-info */
164#content-info {
165     margin-top: 2em;
166     font-size: .875em;
167     font-family: "Franklin gothic medium","arial narrow","DejaVu Sans Condensed","helvetica neue",helvetica,sans-serif;
168     }
169#content-info h2 { 
170     font-size: 1.2em;
171     color: #14709e;
172     }
173#subcategories {
174     font-size: .875em;
175     font-family: "Franklin gothic medium","arial narrow","DejaVu Sans Condensed","helvetica neue",helvetica,sans-serif;
176     }
177#subcategories h3 { 
178     font-size: 1.1em;
179     font-variant: small-caps;
180     }
181#subcategories li {
182     margin: 0;
183     }
184#content-info p, 
185#content-info ul, 
186#subcategories ul { 
187     margin: .5em 0;
188     padding: 0;
189     list-style-type: none;
190     }
191
192/* ------------------------------------------------------- pagination, navlinks */
193#navlinks,
194.navlinks, 
195.pagination {
196     margin: 2em 0 1em 0;
197     padding: 4px 8px;
198     text-align: center;
199     font-size: .875em;
200     color: #000;
201     background: rgb(244,244,245);
202     background: -moz-linear-gradient(top, rgba(244,244,245,1) 0%, rgba(215,215,220,1) 100%);
203     background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(244,244,245,1)), color-stop(100%,rgba(215,215,220,1)));
204     background: -webkit-linear-gradient(top, rgba(244,244,245,1) 0%,rgba(215,215,220,1) 100%);
205     background: -o-linear-gradient(top, rgba(244,244,245,1) 0%,rgba(215,215,220,1) 100%);
206     background: -ms-linear-gradient(top, rgba(244,244,245,1) 0%,rgba(215,215,220,1) 100%);
207     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f5', endColorstr='#d7d7dc',GradientType=0 );
208     background: linear-gradient(top, rgba(244,244,245,1) 0%,rgba(215,215,220,1) 100%);
209     -moz-border-radius: 4px;
210     -webkit-border-radius: 4px;
211     border-radius: 4px;
212     border-right: 1px solid #aaa;
213     border-bottom: 1px solid #ccc;
214     }
215#navlinks,
216.navlinks {
217     margin-top: 4em;
218     }
219#navlinks a,
220.navlinks a, 
221.pagination a {
222     padding: 0 1em;
223     white-space: nowrap;
224     }
225
226/* ------------------------------------------------------------
227     6. BILLETS
228------------------------------------------------------------- */
229
230.post {
231     background: transparent url(img/filet.png) repeat-x left bottom;
232     }
233.day-date {
234     display: none;
235     }
236.post-title {
237     margin-bottom: .33em;
238     color: #14709e;
239     line-height: 1.17;
240     }
241.post-title a {
242     text-decoration: none;
243     color: #ad3f4c;
244     }
245.post h3, 
246.post h4, 
247.post h5,
248.post h6 {
249     font-variant: small-caps;
250     font-weight: normal;
251     color: #14709e;
252     }
253.post-info, 
254.post-tags, 
255.post-info-co, 
256.read-it, 
257.page-info {
258     line-height: 1.2;   
259     margin: .33em 0;
260     }
261.post-attr {
262     margin-bottom: 1em;
263}
264.post-info, 
265.post-tags {
266     font-size: .875em;
267     margin: 0;
268     background: #fff;
269     display: inline;
270     padding: 0 .66em 0 0;
271     }
272.post-info span + span {
273     padding-left: .5em;
274     }
275.post-breadcrumb-cat a {
276     padding-left: 24px;
277     background: #fff no-repeat left center url(img/breadcrumb-category.png);
278}
279.post-cat a {
280     padding-left: 24px;
281     background: #fff no-repeat left center url(img/category.png);
282     }
283.permalink a {
284     padding-left: 20px;
285     background: #fff no-repeat left center url(img/link.png);
286     }
287.post-info .post-date {
288     padding-left: 28px;
289     background: #fff no-repeat 6px center url(img/date.png);
290}
291.post-info a, 
292.post-info-co a,
293.permalink a {
294     white-space: nowrap;
295     }
296.post-tags a {
297     padding-right: 1em;
298     padding-left: 14px;
299     background: #fff no-repeat left center url(img/tag.png);
300     }
301.post-tags li {
302     display: inline;
303     }
304.post-content {
305     padding-bottom: 9px;
306     }
307.post ul {
308     list-style-type: square;
309     }
310.footnotes {
311     font-size: .875em;
312     }
313.footnotes h4 {
314     font-variant: normal;
315     font-weight: bold;
316}
317.read-it {
318     text-align: right;
319     margin: 0 0 .25em 0;
320     }
321.read-it a {
322     color: #ad3f4c;
323     background: #fff;
324     padding-left: .5em;
325     }
326.post-info-co, 
327.page-info {
328     margin: 0;
329     background: #fff;
330     display: inline;
331     font-size: 0.875em;
332     font-style: italic;
333     padding-right: .5em;
334     }
335.post-info-co a {
336     text-decoration: none;
337     padding-right: 1em;
338     padding-left: 28px;
339     background-color: #fff;
340     background-repeat: no-repeat;
341     background-position: left center;
342     }
343.post-info-co a.comment_count {
344     background-image: url(img/comment.png);
345     }
346.post-info-co a.ping_count {
347     background-image: url(img/ping.png);
348     }
349.post-info-co a.attach_count {
350     background-image: url(img/attach.png); 
351     }
352#attachments {
353     font-size: .875em;
354     border-bottom: 1px solid #999;
355     margin: 0 0 2em;
356     }
357#attachments h3 {
358     font-variant: small-caps;
359     font-weight: normal;
360     color: #666;
361     }
362#attachments ul {
363     list-style-type: none;
364     margin: 0 0 1em;
365     padding: 0;
366     }
367#attachments ul li {
368     padding-left: 24px;
369     background: #fff url(img/download.png) no-repeat;
370     }
371
372/* ------------------------------------------------------------
373     7. COMMENTAIRES, PINGS
374------------------------------------------------------------- */
375
376/* ------------------------------------------------------- commentaires et rétroliens */
377#comments, 
378#ping-url, 
379#comment-form,
380#comments-feed { 
381     color: #333;
382     font-family: "Franklin gothic medium","arial narrow","DejaVu Sans Condensed","helvetica neue",helvetica,sans-serif;
383     font-size: .875em;
384     clear: both;
385     }
386#comment-form, #ping-url {
387     padding: 1em;
388     background: #eef;
389     margin-top: 1em;
390     color: #333;
391     border: 1px solid #ddf;
392     }
393#pr {
394     padding: 1em;
395     border: 1px dashed #14709e;
396     margin-bottom: 1em;
397     }
398#comments h3, 
399#ping-url h3, 
400#pr h3, 
401#comment-form h3 { 
402     margin-top: 2em;
403     color: #666;
404     }
405#comment-form h3, #ping-url h3 {
406     margin-top: 0;
407     }
408#comments > ul { 
409     margin-left: 0;
410     padding-left: 0;
411     list-style-type: none;
412     }
413.comment, .ping {
414     clear: left;
415     margin-left: 0;
416     border-top: 1px solid #bbb;
417     }
418.comment-info { 
419     clear: left;
420     float: left;
421     padding-bottom: .2em;
422     margin-top: 1em;
423     line-height: 1.25;
424     width: 10em;
425     color: #666;
426     font-family: "Century Schoolbook", "Century Schoolbook L", Georgia, serif;
427     }
428#comments .first { }
429#comments .odd { }
430#comments .me { 
431     font-family: "Century Schoolbook", "Century Schoolbook L", Georgia, serif;
432     color: #14709e;
433     }
434.comment-number {
435     font-size: 2em;
436     font-weight: normal;
437     font-style: italic;
438     text-decoration: none;
439     font-family: "Century Schoolbook", "Century Schoolbook L", Georgia, serif;
440     color: #ad3f4c;
441     display: block;
442     width: 2em;
443     }
444.comment .comment-number {
445     background: transparent url(img/comm.png) right center no-repeat;
446     }
447.ping .comment-number {
448     background: transparent url(img/tb.png) right center no-repeat;
449     }
450.comment-content {
451     margin-left: 11.5em;
452     }
453#comments-feed {
454     border-top: 1px solid #bbb;
455     margin-top: 1.5em;
456     padding-top: 1em;
457     }
458
459/* ------------------------------------------------------- formulaire des commentaires */
460#comment-form fieldset { }
461.field { 
462     margin-bottom: 1em;
463     }
464.field label { 
465     display: block;
466     font-size: .875em;
467     color: #666;
468     text-indent: 6px;
469     }
470.field input, 
471.field textarea {
472     display: block;
473     font-size: 100%;
474     border: 1px solid #ccc;
475     padding: 4px;
476     background: #fff;
477     -webkit-border-radius: 3px; 
478     -moz-border-radius: 3px;
479     border-radius: 3px;
480     font-family: sans-serif;
481     }
482.field textarea { 
483     padding: .5em 1em; 
484     }
485.field input:focus, 
486.field textarea:focus {
487     background: #fff;
488     }
489#comment-form input[type=submit], 
490#comment-form input[type=reset] {
491     font-size: .875em;
492     display: inline-block;
493     text-transform: capitalize;
494     font-weight: bold;
495     text-align: center;
496     padding: .33em .66em;
497     text-shadow: 0 1px 1px rgba(0,0,0,.3);
498     -webkit-border-radius: 5px; 
499     -moz-border-radius: 5px;
500     border-radius: 5px;
501     border: solid 1px #777;
502     -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
503     -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
504     box-shadow: 0 1px 2px rgba(0,0,0,.2);
505     background: rgb(119,119,119);
506     background: -moz-linear-gradient(top, rgba(119,119,119,1) 0%, rgba(85,85,85,1) 100%);
507     background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(119,119,119,1)), color-stop(100%,rgba(85,85,85,1)));
508     background: -webkit-linear-gradient(top, rgba(119,119,119,1) 0%,rgba(85,85,85,1) 100%);
509     background: -o-linear-gradient(top, rgba(119,119,119,1) 0%,rgba(85,85,85,1) 100%);
510     background: -ms-linear-gradient(top, rgba(119,119,119,1) 0%,rgba(85,85,85,1) 100%);
511     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#777777', endColorstr='#555555',GradientType=0 );
512     color: #eee;
513     }
514#comment-form input[type=submit]:hover, #comment-form input[type=submit]:focus,
515#comment-form input[type=reset]:hover, #comment-form input[type=reset]:focus {
516     background: linear-gradient(top, rgba(119,119,119,1) 0%,rgba(85,85,85,1) 100%);
517     background: rgb(85,85,85);
518     background: -moz-linear-gradient(top, rgba(85,85,85,1) 0%, rgba(119,119,119,1) 100%);
519     background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(85,85,85,1)), color-stop(100%,rgba(119,119,119,1)));
520     background: -webkit-linear-gradient(top, rgba(85,85,85,1) 0%,rgba(119,119,119,1) 100%);
521     background: -o-linear-gradient(top, rgba(85,85,85,1) 0%,rgba(119,119,119,1) 100%);
522     background: -ms-linear-gradient(top, rgba(85,85,85,1) 0%,rgba(119,119,119,1) 100%);
523     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#555555', endColorstr='#777777',GradientType=0 );
524     background: linear-gradient(top, rgba(85,85,85,1) 0%,rgba(119,119,119,1) 100%);
525     text-decoration: none;
526     }
527#c_content {
528     width: 95%;
529     padding: 4px;
530     }
531
532.form-help { 
533     margin-top: 0;
534     font-size: .875em;
535     font-style: italic;
536     }
537
538/*#ping-url {
539     background: #efefef;
540     border-right: 1px solid #aaa;
541     border-bottom: 1px solid #aaa;
542     font-size: .81em;
543     padding-left: .5em;
544     }*/
545#comments-feed { 
546     margin-top: 2em; 
547     }
548
549/* ------------------------------------------------------------
550     8. SIDEBAR
551------------------------------------------------------------- */
552
553#sidebar {
554     font-size: 0.875em;
555     }
556#sidebar h2 {
557     font-size: 1.1em;
558     margin: 0;
559     font-weight: normal;
560     font-family: "Franklin gothic medium","arial narrow","DejaVu Sans Condensed","helvetica neue",helvetica,sans-serif;
561     color: #333;
562     }
563#sidebar h2.toggle {
564     background-image: url(img/plus.png);
565     background-repeat: no-repeat;
566     padding-left: 20px;
567}
568#sidebar h2.expanded {
569     background-image: url(img/minus.png);
570}
571#sidebar h2.toggle a {
572     text-decoration: none;
573}
574#sidebar h3 {
575     font-size: 1em;
576     margin-bottom: 0;
577     font-weight: normal;
578     font-family: "Franklin gothic medium","arial narrow","DejaVu Sans Condensed","helvetica neue",helvetica,sans-serif;
579     color: #333;
580     }
581#sidebar ul {
582     margin: .75em 0 .5em 4px;
583     list-style-type: none;
584     padding: 0;
585     }
586#sidebar ul li ul {
587     margin-top: 0;
588     margin-bottom: 0;
589     }
590#sidebar ul li {
591     padding-left: 16px;
592     background: transparent url(img/square.png) no-repeat 0 .5em;
593     }
594#sidebar ul li ul li {
595     background-image: url(img/square2.png);
596     }
597#sidebar ul li ul li ul li {
598     background-image: url(img/square3.png);
599     }
600#sidebar .syndicate ul li {
601     background-image: none;
602     padding-left: 0;
603}
604#blognav > div, 
605#blogextra > div {
606     background: #ededed;
607     margin-bottom: 1em;
608     padding: 4px 8px;
609     -webkit-box-shadow: 2px 2px 4px rgba(0,0,0,.2);
610     -moz-box-shadow: 2px 2px 4px rgba(0,0,0,.2);
611     -o-box-shadow: 2px 2px 4px rgba(0,0,0,.2);
612     box-shadow: 2px 2px 4px rgba(0,0,0,.2);
613     }
614.category-current {
615     font-weight: bold;
616     }
617     
618/* ------------------------------------------------------- recherche */
619#search p {
620     background: #fff; 
621     text-align: right;
622     border: 1px solid #ddd;
623     vertical-align: middle;
624     padding: 0;
625     }
626#search input { 
627     margin: 0;
628     border: none;
629     background: transparent;
630     height: auto;
631     line-height: 2em;
632     }
633#q {
634     float: left;
635     width: 78%;
636     font-size: 100%;
637     padding-left: 2px;
638     }
639#q:focus {
640     background: #fcfcf9;
641     }
642#search .submit {
643     background: #706F6F;
644     color: #fff;
645     vertical-align: top;
646     width: 20%;
647     font-variant: small-caps;
648     height: 2em;
649     }
650#search .submit:hover, 
651#search .submit:focus {
652     background: #333;
653     }
654     
655/* ------------------------------------------------------------
656     9. FOOTER
657------------------------------------------------------------- */
658
659#footer {
660     clear: both;
661     background: #686867;
662     color: #fff;
663     }
664#footer p {
665     padding: .66em 2em;
666     margin: 0;
667     text-align: right;
668     font-size: .875em;
669     font-family: "Franklin gothic medium","arial narrow","DejaVu Sans Condensed","helvetica neue",helvetica,sans-serif;
670     }
671#footer a {
672     color: #fff;
673     }
674#footer a:hover, 
675#footer a:focus {
676     background: #686867;
677     }
678#stickers {
679     list-style-type: none;
680     margin: 0;
681     }
682     
683/* ------------------------------------------------------------
684     10. CLASSES COMMUNES
685------------------------------------------------------------- */
686
687/* ------------------------------------------------------- RSS */
688.feed { 
689     padding-left: 20px;
690     background : transparent url(img/feed.png) no-repeat left center;
691     }
692
693/* ------------------------------------------------------- tags */   
694.dc-tags .content-inner, 
695.dc-tags .content-inner ul {
696     font-size: 1.25em;
697     margin: 0;
698     padding: 0;
699     }
700.dc-tags #content ul li, 
701.dc-tags #content ul li a, 
702#sidebar .tags ul li, 
703#sidebar .tags ul li a {
704     display : inline;
705     width : auto;
706     padding-left : 0;
707     padding-right : .5em;
708     background-color : transparent;
709     background-image: none;
710     text-decoration: none;
711     line-height : 1.5em;
712     }
713.tags ul li a:hover {
714     background-image :none;
715     }
716.dc-tags .tag0, .tags .tag0 { font-size: 85%; }
717.dc-tags .tag10, .tags .tag10 { font-size: 90%; }
718.dc-tags .tag20, .tags .tag20 { font-size: 95%; }
719.dc-tags .tag30, .tags .tag30 { font-size: 100%; }
720.dc-tags .tag40, .tags .tag40 { font-size: 105%; }
721.dc-tags .tag50, .tags .tag50 { font-size: 110%; }
722.dc-tags .tag60, .tags .tag60 { font-size: 115%; }
723.dc-tags .tag70, .tags .tag70 { font-size: 120%; }
724.dc-tags .tag80, .tags .tag80 { font-size: 125%; }
725.dc-tags .tag90, .tags .tag90 { font-size: 130%; }
726.dc-tags .tag100, .tags .tag100 { font-size: 135%; }
727
728/* ------------------------------------------------------- messages d'erreur */
729.error {
730     border : 1px solid #c44;
731     background : #df0;
732     padding : 0.5em;
733     }
734.error ul {
735     padding-left : 20px;
736     }
737.error li {
738     list-style : square;
739     }
740
741/* ------------------------------------------------------- class à dispo pour billets */
742.left { float: left; margin-right : 1em; }
743.right { float: right; margin-left : 1em; }
744.center { margin-left : auto; margin-right : auto; }
745.left-text { text-align : left; }
746.right-text { text-align : right; }
747.center-text { text-align : center; }
748.little-text { font-size : .875em;}
749.little-upper-text { font-size : .875em; text-transform : uppercase; }
750hr.hidden {background: #fff; color: #fff; border-color: #fff; }
751
752
753/* ------------------------------------------------------------
754     11. PAGES SPECIFIQUES
755------------------------------------------------------------- */
756
757.dc-home { }
758.dc-post { }
759.dc-category { }
760
761/* ---------------------------------------------------------------- archives */
762.dc-archive {}
763#time-criteria {}
764#other-criteria {}
765#more-arch {}
766.arch-block {
767     display: inline-block;
768     margin: 0 0 2em 4em;
769     vertical-align: top;
770     }
771.arch-block:first-child {
772     margin-left: 0;
773     }
774.arch-block h3 {
775     margin-bottom: 1em;
776     font-size: 1.2em;
777     font-style: italic;
778     font-weight: normal;
779     text-transform: lowercase;
780     color: #14709e;
781     }
782.arch-block h4 {
783     font-family: "Franklin gothic medium","arial narrow","DejaVu Sans Condensed","helvetica neue",helvetica,sans-serif;
784     font-weight: normal;
785     font-size: 1.1em;
786     margin-bottom: 0;
787     margin-top: 0;
788     }
789.arch-block ul {
790     list-style-type: none;
791     margin: 0;
792     padding: 0;
793     }
794.arch-block ul ul {
795     margin-left: 20px;
796     }
797
798#by-date {
799     margin-right: 0;
800     margin-bottom: 1em;
801     }
802#by-date h3 {
803     margin-bottom: 0;
804     }
805.fromto {
806     margin-top: 0;
807     margin-bottom: 1.5em;
808     font-size: .875em;
809     font-style: italic;
810     }
811#by-date div {
812     display: inline-block;
813     vertical-align: top;
814     margin: 0;
815     width: 10em;
816     }
817#by-date ul {
818     margin-bottom: 1.5em;
819     }
820#by-date span {
821     font-size: .875em;
822     }
823
824#by-cat ul {
825     background: transparent url(img/vline.png) repeat-y;
826     }
827#by-cat ul ul {
828     margin: .5em 0 0 .5em;
829     }
830#by-cat ul li {
831     padding: .2em .2em .2em 20px;
832     background: transparent url(img/hline.png) no-repeat left .82em;
833     }
834#by-cat ul li:last-child {
835     background-image: url(img/last-hline.png);
836     }
837#by-tag {
838     width: 18em;
839     }   
840#by-tag ul li {
841     display: inline;
842     padding-right: 1em;
843}
844#by-tag .tag0 { color: #909090; font-size: 90%; }
845#by-tag .tag10 { color: #828282; font-size: 92%; }
846#by-tag .tag20 { color: #737373; font-size: 94%; }
847#by-tag .tag30 { color: #656565; font-size: 96%; }
848#by-tag .tag40 { color: #484848; font-size: 98%; }
849#by-tag .tag50 { color: #3A3A3A; font-size: 100%; }
850#by-tag .tag60 { color: #2B2B2B; font-size: 102%; }
851#by-tag .tag70 { color: #1D1D1D; font-size: 104%; }
852#by-tag .tag80 { color: #0E0E0E; font-size: 106%; }
853#by-tag .tag90 { color: #030303; font-size: 108%; }
854#by-tag .tag100 { color: #000; font-size: 110%;}
855
856
857.dc-archive #search {
858     padding: 4px;
859     }
860.dc-archive #blogextra div {
861     background-color: transparent;
862     margin-bottom: 1em;
863     padding: 4px;
864     border: 1px solid #ccc;
865     -webkit-box-shadow: none;
866     -moz-box-shadow: none;
867     -o-box-shadow: none;
868     box-shadow: none;
869     }
870.dc-archive #blogextra h2 {
871     margin-bottom: .33em;
872     }   
873     
874.dc-archive-month h2.post-title {
875     font-size: 1.3em;
876     }
877
878.dc-tags { }
879.dc-tag { }
880
881.dc-404 #content-info {
882     padding-bottom: 200px;
883     background: transparent url(img/404.png) no-repeat bottom center;
884     }
885.dc-404 .content-inner ul {
886     margin-left: 0;
887     padding-left: 0;
888     list-style-type: none;
889     }
890.dc-404 .content-inner h3 {
891     font-size: 1.1em;
892     font-variant: small-caps;
893     }
894.dc-search #content-info em { color: #14709e; }
895
896
897/* ---------------------------------------------------
898  12. ET POUR FINIR NE PAS OUBLIER LES CLEARERS
899--------------------------------------------------- */
900.post, 
901.footnotes, 
902#attachments,
903.read-it, 
904.post-info-co, 
905#comments, #footer {
906     clear:both;
907     }
908
909/* ================================================
910     personnalisations blog chantier
911================================================ */
912.post-content img, .post-excerpt img {
913     border: 1px solid #ccc;
914     }
Note: See TracBrowser for help on using the repository browser.

Sites map