Guest User

Untitled

a guest
Oct 22nd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. body{
  2. background-color: black;
  3. }
  4.  
  5.  
  6. /*-----Html code-----*/
  7. /*<a class="button" href="#">Your Text</a>*/
  8.  
  9. /*-----Start-----*/
  10. .button{
  11. background:#F9C766;
  12. color:#fff;
  13. border:none;
  14. position:relative;
  15. height:60px;
  16. font-size:1.6em;
  17. padding:15px 25px;
  18. cursor:pointer;
  19. transition:800ms ease all;
  20. outline:none;
  21. margin-top: 10px;
  22. text-decoration: none;
  23. text-transform: uppercase;
  24. }
  25. .button:hover{
  26. background:#F9C766;
  27. color:#fff;
  28. }
  29. .button:before,.button:after{
  30. content:'';
  31. position:absolute;
  32. top:0;
  33. right:0;
  34. height:4px;
  35. width:0;
  36. background: #fff;
  37. transition:400ms ease all;
  38. }
  39. .button:after{
  40. right:inherit;
  41. top:inherit;
  42. left:0;
  43. bottom:0;
  44. }
  45. .button:hover:before,.button:hover:after{
  46. width:100%;
  47. transition:800ms ease all;
  48. }
  49.  
  50. /*-----Finish-----*/
Add Comment
Please, Sign In to add comment