
Untitled
By: a guest on
Aug 19th, 2012 | syntax:
None | size: 1.51 KB | hits: 9 | expires: Never
/**
* A simple test for ENGINEHOUSE
*/
body {
font-family: Helvetica;
font-weight: bold;
text-align: center;
}
.amount {
font-size: 120px;
padding-bottom: 10px;
border-bottom: 1px solid #fc6d99;
}
.label {
margin-top: 12px;
font-size: 22px;
}
.button {
color: white;
height: 200px;
width: 200px;
border-radius: 5px;
background-image: linear-gradient(top, rgb(238,76,127) 0%, rgb(231,47,96) 100%);background-image: -o-linear-gradient(top, rgb(238,76,127) 0%, rgb(231,47,96) 100%);
background-image: -moz-linear-gradient(top, rgb(238,76,127) 0%, rgb(231,47,96) 100%);
background-image: -webkit-linear-gradient(top, rgb(238,76,127) 0%, rgb(231,47,96) 100%);
background-image: -ms-linear-gradient(top, rgb(238,76,127) 0%, rgb(231,47,96) 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, rgb(238,76,127)),
color-stop(1, rgb(231,47,96))
);
border-top: 1px solid #fc6d99;
border-left: 1px solid #fc6d99;
text-shadow: 1px 1px 2px #e72f60;
}
.border {
border-radius: 5px;
width: 200px;
border: 1px solid #c2214f;
}
.border:active {
border: 1px solid white;
}
.button:hover {
background: #444;
}
.button:active {
box-shadow:inset 0 0 10px #000000;
border: 1px solid white;
}
.button:hover {
background: #ba4b58;
background: -webkit-gradient(linear, left top, left bottom, from(#cf5d6a), to(#a53845));
background: -moz-linear-gradient(top, #cf5d6a, #a53845);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cf5d6a', endColorstr='#a53845');
}