Установка:
Этот код вставляем в css стили вашего сайта:
Code
input[type="submit"]{
border:1px solid #c0c0c0;
background:#efefef;
cursor:pointer;
border-radius:3px;
text-align:center;
text-shadow: 0 1px 1px white;
padding:3px;
}
input[type="submit"]:hover{
border:1px solid black;
border-radius:3px;
background:-webkit-linear-gradient(top, white, #efefef,#c0c0c0);
cursor:pointer;
text-align:center;
padding:3px;
}
input[type="submit"]:active{
border:1px solid black;
border-radius:3px;
background:-webkit-linear-gradient(top, #2D4DFF, #4463FF,#607DFF);
color:white;
text-shadow: 0 1px 1px black;
}
Это для изменения стиля кнопок BB кодов:
Code
input[type="button"]{
border:1px solid #c0c0c0;
background:#efefef;
cursor:pointer;
border-radius:3px;
text-align:center;
text-shadow: 0 1px 1px white;
padding:3px;
}
input[type="button"]:hover{
border:1px solid black;
border-radius:3px;
background:-webkit-linear-gradient(top, white, #efefef,#c0c0c0);
cursor:pointer;
text-align:center;
text-shadow: white 0 0 2px;
padding:3px;
}
input[type="button"]:active{
border:1px solid black;
border-radius:3px;
background:-webkit-linear-gradient(top, #2D4DFF, #4463FF,#607DFF);
color:white;
text-shadow: 0 1px 1px black;
}
Другие новости |
Поделиться ссылкой
|