18.10.2012, 19:39
Keine Ahnung.
Habe die Button in: http://www.cssbuttongenerator.com/ erstellt und denn Code dann in global.css eingefügt!
Habe die Button in: http://www.cssbuttongenerator.com/ erstellt und denn Code dann in global.css eingefügt!
Code:
.postbit {
-moz-box-shadow:inset 0px 1px 0px 0px #000000;
-webkit-box-shadow:inset 0px 1px 0px 0px #000000;
box-shadow:inset 0px 1px 0px 0px #000000;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #636163), color-stop(1, #000000) );
background:-moz-linear-gradient( center top, #636163 5%, #000000 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#636163', endColorstr='#000000');
background-color:#636163;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #127380;
display:inline-block;
color:#21b8a4;
font-family:arial;
font-size:11px;
font-weight:bold;
padding:3px 8px;
text-decoration:none;
text-shadow:1px 1px 0px #096470;
}
.postbit:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #000000), color-stop(1, #636163) );
background:-moz-linear-gradient( center top, #000000 5%, #636163 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#636163');
background-color:#000000;
}
.postbit:active {
position:relative;
top:1px;
}