Commit | Line | Data |
---|---|---|
c495c100 P |
1 | /* |
2 | * +----------------------------------+ | |
3 | * Nom de l'Outil : Filets de Separation | |
4 | * Version : 1.3 | |
5 | * Date : 27/12/2006 | |
6 | * Auteur : FredoMkb | |
7 | * Adaptation et ameliorations pour le plugin | |
8 | * "Couteau Suisse" : Patrice Vanneufville | |
9 | * +-------------------------------------+ | |
10 | * Cette feuille de style est specialement dediee | |
11 | * au formatage des filets produits par l'outil | |
12 | * "Filets de Separation" ("filets_sep.php"). | |
13 | * +----------------------------------+ | |
14 | * Pour toute remarque ou suggestion, reportez-vous a l'article : | |
15 | * <http://www.spip-contrib.net/> | |
16 | * +-------------------------------------+ | |
17 | */ | |
18 | ||
19 | .filet_sep { | |
20 | font-size:1px; | |
21 | text-align:center; | |
22 | } | |
23 | ||
24 | /******************************************/ | |
25 | /** Filets **/ | |
26 | ||
27 | /* Filet plein long epais 4px gris pale */ | |
28 | .filet_sep_0 {border-bottom: 4px solid #ccc; padding: 0; margin: 0;} | |
29 | ||
30 | /* Filet plein long fin 1px gris clair */ | |
31 | .filet_sep_1 {border-bottom: 1px solid #999; padding: 0; margin: 0;} | |
32 | ||
33 | /* Filet tirets moyen fin 1px gris moyen */ | |
34 | .filet_sep_2 {border-bottom: 1px dashed #666; padding: 0; margin: 0px 80px;} | |
35 | ||
36 | /* Filet pointille court fin 1px gris fonce */ | |
37 | .filet_sep_3 {border-bottom: 1px dotted #333; padding: 0; margin: 0 33%;} | |
38 | ||
39 | ||
40 | /******************************************/ | |
41 | /** Blocs **/ | |
42 | ||
43 | /* Bloc long fond jaune pale avec filet pointille rouge */ | |
44 | .filet_sep_4 { | |
45 | padding: 0; | |
46 | margin: 0; | |
47 | height: 4px; | |
48 | background-color: lemonchiffon; /* #FFFACD */ | |
49 | border: 1px dotted maroon; /* #800000 */ | |
50 | } | |
51 | ||
52 | /* Bloc moyen fond gris clair avec filets gauche-droite bleu */ | |
53 | .filet_sep_5 { | |
54 | padding: 0; | |
55 | margin: 0px 100px; | |
56 | height: 5px; | |
57 | background-color: silver; /* #C0C0C0 */ | |
58 | border-left: 25px solid navy; /* #000080 */ | |
59 | border-right: 25px solid navy; /* #000080 */ | |
60 | } | |
61 | ||
62 | /* Bloc court fond bleu, filet haut rouge, filet bas orange */ | |
63 | .filet_sep_6 { | |
64 | padding: 0; | |
65 | margin: 0 42%; | |
66 | height: 6px; | |
67 | background-color: blue; /* #0000FF */ | |
68 | border-top: 6px solid red; /* #FF0000 */ | |
69 | border-bottom: 6px solid darkorange; /* #FF8C00 */ | |
70 | } | |
71 | ||
72 | ||
73 | /******************************************/ | |
74 | /** Images **/ | |
75 | ||
76 | .filet_sep_image { | |
77 | padding: 0; | |
78 | margin: 0; | |
79 | height: 10px; /* hauteur par defaut */ | |
80 | background-position: center; | |
81 | background-repeat: no-repeat; | |
82 | border-style: none; | |
83 | } |