Wednesday, January 28, 2015

make your web button more interactive by css

#button_id{
    background-color: #D9FDDC;
    background-image: -moz-linear-gradient(100% 100% 90deg, #D9FDDC, #E2FDE4);
    border: 1px solid #33CC66;
    border-radius: 5px 5px 5px 5px;
    color: #006633;
    cursor: pointer;
    line-height: 16px;
    padding: 3px 5px;
    text-decoration: none;
}

No comments:

Post a Comment

Workflow of WordPress project in a team with Git

1. We should not push any Wordpress core folders or files to github. 2. Only push custom theme and custom plugin into github. 3. So, in this...