1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#formulaireinscription input[type="submit"]
{
text-align: center;
font-family: 'La Belle Aurore', cursive;
font-size: 17px;
color: #fff;
text-shadow: 0 1px rgba(0,0,0,.3);
width: 152px;
height: 40px;
@include border-radius(7px,4px);
background-color: #4a5360;
@include box-shadow(0 1px 2px rgba(0,0,0,.2), inset 0 1px 2px rgba(255,255,255,.38));
border: solid 1px #fff;
background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,.26), rgba(255,255,255,.26));
background-image: -moz-linear-gradient(bottom, rgba(0,0,0,.26), rgba(255,255,255,.26));
background-image: -o-linear-gradient(bottom, rgba(0,0,0,.26), rgba(255,255,255,.26));
background-image: -ms-linear-gradient(bottom, rgba(0,0,0,.26), rgba(255,255,255,.26));
background-image: linear-gradient(to top, rgba(0,0,0,.26), rgba(255,255,255,.26));
} |
Partager