Advertisement
Guest User

Untitled

a guest
May 28th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.10 KB | None | 0 0
  1. li{
  2.   margin:5px;
  3.   line-height:38px;
  4.   list-style:none;
  5. }
  6.  
  7. a{
  8.   color:#def;
  9.   background:#822;
  10.   text-decoration:none;
  11.   background-image:-webkit-gradient(linear, left top, left bottom, from(#a22), to(#622));
  12.   background-image:-moz-linear-gradient(top, #a22, #622);
  13.   -webkit-border-radius:5px;
  14.   -moz-border-radius:5px;
  15.   border-radius:5px;
  16.   padding:3px;
  17.   border-top:5px solid #622;
  18.   border-left:5px solid #622;
  19.   border-bottom:5px solid #a22;
  20.   border-right:5px solid #a22;
  21.   position:relative;
  22.   left:0;
  23.   -webkit-transition:color .1s linear, border .1s linear, left .1s ease-in;
  24.   -o-transition-property: color, border, left;
  25.   -o-transition-duration: .1s, .1s ,.1s;
  26.   -o-transition-timing-function: linear, linear, ease-in;
  27. }
  28.  
  29. a:hover{
  30.   color:#ffb;
  31.   background-image:-webkit-gradient(linear, left top, left bottom, from(#622), to(#a22));
  32.   background-image:-moz-linear-gradient(top, #622, #a22);
  33.   border-top:5px solid #a22;
  34.   border-left:5px solid #a22;
  35.   border-bottom:5px solid #622;
  36.   border-right:5px solid #622;
  37.   left:10px;
  38. }
  39.  
  40. a:active,a:focus{
  41.   background:#522;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement