Advertisement
srikat

Untitled

Dec 23rd, 2013
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.53 KB | None | 0 0
  1. a.more-link {
  2.     display: inline-block;
  3.     padding: 0.5em 1em;
  4.     color: #fff;
  5.     background: #878787;
  6.     -webkit-transition:  all .2s linear;
  7.     -moz-transition:  all .2s linear;
  8.     -o-transition:  all .2s linear;
  9.     transition:  all .2s linear;
  10.     text-align:center;
  11.     -moz-box-shadow:inset 0px 1px 0px 0px #fff;
  12.     -webkit-box-shadow:inset 0px 1px 0px 0px #fff;
  13.     box-shadow:inset 0px 1px 0px 0px #fff;
  14.     -webkit-border-radius: 5px;
  15.     -moz-border-radius: 5px;
  16.     border-radius: 5px;
  17. }
  18.  
  19. a.more-link:hover {
  20.     background: #f15123;
  21.     color: #fff;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement