Css Buton Yapımı

  • Konbuyu başlatan Konbuyu başlatan Kafle
  • Başlangıç tarihi Başlangıç tarihi
0
EXE RANK

Kafle

Fexe Kullanıcısı
Puanları 0
Çözümler 0
Katılım
2 Ara 2012
Mesajlar
378
Tepkime puanı
0
Puanları
0
Yaş
27
Kafle
global.css nin sonuna yada yeni bir cssye yapıstırın.

Kod:
.button {
    -moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
    -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
    box-shadow:inset 0px 1px 0px 0px #ffffff;
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
    background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
    background-color:#ededed;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-radius:5px;
    border:1px solid #dcdcdc;
    display:inline-block;
    color:#777777;
    font-family:arial;
    font-size:12px;
    font-weight:bold;
    padding:4px 24px;
    text-decoration:none;
    text-shadow:1px 1px 0px #ffffff;
}.button:hover {
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
    background:-moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');
    background-color:#dfdfdf;
}.button:active {
    position:relative;
    top:1px;
}

butonlarıda eklemek icin.

Kod:
<a href="link"><input type="submit" class="button" value="Buton Adı"></a>

bunları yapmassanız sadece konuyu gönder git vs onlar olur.
 
Geri
Üst