Return to Snippet

Revision: 25784
at July 28, 2010 17:57 by alexandrepayet


Updated Code
/* Ombres sur les boites
--------------------------*/

-moz-box-shadow: 0px 0px 5px #bbb; /* les parametres sont : marge gauche, haute, l'etendu et la couleur*/
-o-box-shadow: 0px 0px 5px #bbb;
-webkit-box-shadow: 0px 0px 5px #bbb;


/* Coin arrondi sur les boites
------------------------*/

/*les quatre coin d'un coup*/
-webkit-border_radius: 6px;
-moz-border-radius: 6px;


/*chaque coin independamment*/
-webkit-border-bottom-left-radius: 6px;
-webkit-border-top-right-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
-webkit-border-top-left-radius: 6px;
-moz-border-radius-bottomleft: 6px;
-moz-border-radius-topright: 6px;
-moz-border-radius-bottomright: 6px;
-moz-border-radius-topleft: 6px;


/* Ombres sur les textes
--------------------------*/

text-shadow: 0px 0px 5px #bbb; /* les parametres sont : marge gauche, marge haute, l'etendu et la couleur*/

Revision: 25783
at April 28, 2010 05:41 by alexandrepayet


Updated Code
/* Ombres sur les boites
--------------------------*/

-moz-box-shadow: 0px 0px 5px #bbb; /* les parametres sont : marge gauche, haute, l'etendu et la couleur*/
-o-box-shadow: 0px 0px 5px #bbb;
-webkit-box-shadow: 0px 0px 5px #bbb;


/* Coin arrondi sur les boites
------------------------*/

/*les quatre coin d'un coup*/
-webkit-border_radius: 6px;
-moz-border-radius: 6px;


/*chaque coin independamment*/
-webkit-border-bottom-left-radius: 6px;
-webkit-border-top-right-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
-webkit-border-top-left-radius: 6px;
-moz-border-radius-bottomleft: 6px;
-moz-border-radius-topright: 6px;
-moz-border-radius-bottomright: 6px;
-moz-border-radius-topleft: 6px;


/* Ombres sur les textes
--------------------------*/

text-shadow: 0px 0px 5px #bbb; /* les parametres sont : marge gauche, haute, l'etendu et la couleur*/

Revision: 25782
at April 21, 2010 05:23 by alexandrepayet


Updated Code
/* Ombres sur les boîtes
--------------------------*/

-moz-box-shadow: 0px 0px 5px #bbb; /* les paramètres sont : marge gauche, haute, l'etendu et la couleur*/
-o-box-shadow: 0px 0px 5px #bbb;
-webkit-box-shadow: 0px 0px 5px #bbb;


/* Coin arrondi sur les boîtes
------------------------*/

/*les quatre coin d'un coup*/
-webkit-border_radius: 6px;
-moz-border-radius: 6px;

/*chaque coin indépendamment*/
-webkit-border-bottom-left-radius: 6px;
-webkit-border-top-right-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
-webkit-border-top-left-radius: 6px;
-moz-border-radius-bottomleft: 6px;
-moz-border-radius-topright: 6px;
-moz-border-radius-bottomright: 6px;
-moz-border-radius-topleft: 6px;


/* Ombres sur les textes
--------------------------*/

text-shadow: 0px 0px 5px #bbb; /* les paramètres sont : marge gauche, haute, l'etendu et la couleur*/

Revision: 25781
at April 9, 2010 01:31 by alexandrepayet


Initial Code
/* Ombres sur les boîtes
--------------------------*/

-moz-box-shadow: 0px 0px 5px #bbb; /* les paramètres sont : marge gauche, haute, l'etendu et la couleur*/
-o-box-shadow: 0px 0px 5px #bbb;
-webkit-box-shadow: 0px 0px 5px #bbb;


/* Coin arrondi sur les boîtes
------------------------*/

/*les quatre coin d'un coup*/
-webkit-border_radius: 6px;
-moz-border-radius: 6px;

/*chaque coin indépendamment*/
-webkit-border-bottom-left-radius: 6px;
-webkit-border-top-right-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
-webkit-border-top-left-radius: 6px;
-moz-border-radius-bottomleft: 6px;
-moz-border-radius-topright: 6px;
-moz-border-radius-bottomright: 6px;
-moz-border-radius-topleft: 6px;


/* Ombres sur les textes
--------------------------*/

-moz-text-shadow: 0px 0px 5px #bbb; /* les paramètres sont : marge gauche, haute, l'etendu et la couleur*/
-o-text-shadow: 0px 0px 5px #bbb;
-webkit-text-shadow: 0px 0px 5px #bbb;

Initial URL


Initial Description
pour l\'instant les prefixe sont obligatoire

Initial Title
CSS3 : Ombre/lueur, arrondi et dégradé

Initial Tags
CSS3

Initial Language
CSS