Dotclear

source: themes/ductile/style.css @ 610:ab0611313d75

Revision 610:ab0611313d75, 20.6 KB checked in by kozlika, 14 years ago (diff)

Ductile - Jour 8. Bricoles.

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

Sites map