« Accueil » : différence entre les versions
Apparence
Aucun résumé des modifications Balise : Éditeur de wikicode 2017 |
Aucun résumé des modifications Balises : Révoqué Éditeur de wikicode 2017 |
||
Ligne 10 : | Ligne 10 : | ||
color:black; | color:black; | ||
} | } | ||
.foo { | |||
background-color: #444; | |||
background-image: -webkit-gradient( linear, left top, left bottom, from( #444 ), to( #999 ) ); | |||
background-image: -webkit-linear-gradient( top, #444, #999 ); | |||
background-image: -moz-linear-gradient( top, #444, #999 ); | |||
background-image: -o-linear-gradient( top, #444, #999 ); | |||
background-image: linear-gradient( to bottom, #444, #999 ); | |||
-webkit-border-radius: 30px 10px; | |||
border-radius: 30px 10px; | |||
} | |||
}} | }} | ||