Dotclear

source: themes/ductile/style.css @ 487:1c08e5071032

Revision 487:1c08e5071032, 19.1 KB checked in by kozlika, 14 years ago (diff)

[Ductile] Archives, step 2.

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

Sites map