Advertisement
lucas_hnf

Untitled

Jun 23rd, 2015
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.56 KB | None | 0 0
  1. .my-credit-box .credit{
  2.     z-index:1;
  3.     position:fixed;
  4.     bottom:5px;
  5.     right:5px;
  6.     padding:1px 5px 0;
  7.  
  8.     font-size:11px;
  9.     font-family:arial;
  10.     text-transform:none;
  11.     text-align:center;
  12.  
  13.     color:black;
  14.     background:rgba(255,255,255,0.5);
  15.    
  16.     border-radius:100px;
  17.  
  18.     border:1px solid rgba(0,0,0,0.1);
  19.  
  20.     -webkit-transition: all 0.5s ease;
  21.     -moz-transition: all 0.5s ease;
  22.     transition: all 0.5s ease;
  23. }
  24.  
  25. .my-credit-box a:hover{
  26.     text-decoration:none;
  27. }
  28.  
  29. .my-credit-box:hover .credit{
  30.     background:white;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement