/*
texte.css
---------------------------------
regroupe le positionement, la taille, la couleur, etc du texte
---------------------------------
*/
/*les couleurs*/
.rouge{ color: red;}
.vertf{ color: green;}
.bleuf{ color: blue;}
.jaune{ color: yellow;}
.blanc{ color: white;}
.argent{ color: silver;}
.gris{ color: gray;}
.noir{ color: black;}
.olive{ color: olive;}
.marron{ color: maroon;}
.vertc{ color: lime;}
.marine{ color: navy;}
.rose{ color: fuchsia;}
.violet{ color: purple;}
.turquoise{ color: aqua;}
.bleu-gris{ color: teal;}

/*la taille du texte*/
.ttpetit{ font-size: xx-small;}
.tpetit{ font-size: x-small;}
.petit{ font-size: small;}
.grand{ font-size: large;}
.tgrand{ font-size: x-large;}
.ttgrand{ font-size: xx-large;}

/*la police*/
.arial { font-family: Arial, serif;}
.times { font-family: "Times New Roman", serif;}
.impact { font-family: Impact, serif;}
.courier { font-family: "Courier New", serif;}
.georgia { font-family: Georgia, serif;}
.comic { font-family: "Comic Sans MS", serif;}
.verdana { font-family: Verdana, serif;}

/*effet sur le texte*/
.souligne { text-decoration: underline;}
.barre { text-decoration: line-through;}

/*Les listes*/
.liste_i { list-style-type: lower-roman; }
.liste_I { list-style-type: upper-roman; }
.liste_a { list-style-type: lower-latin; }
.liste_A { list-style-type: upper-latin; }
.liste_1 { list-style-type: decimal; }
.liste_rectangle { list-style-type: square; }
.liste_cercle { list-style-type: circle; }
.liste_disque { list-style-type: disc; }
.liste_rien { list-style-type: none; }

/*le positionement*/
.float_right { float: right; }
.float_left { float: left; }

.gauche { text-align: left; }
.droite { text-align: right; }
.centre { text-align: center; }
.justifie { text-align: justify; }