Dotclear

source: themes/ductile/style.css @ 502:d002906f0b30

Revision 502:d002906f0b30, 19.1 KB checked in by kozlika, 14 years ago (diff)

[Ductile] Jour 7 ready ou quasi

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

Sites map