Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. .button {
  2. background-color:#ee8129;
  3. padding:10px 86px;
  4. position:relative;
  5. left: 8px;
  6. top: 15px;
  7. text-decoration:none;
  8. color:#fff;
  9. background-image: linear-gradient(bottom, rgb(238,129,41) 0%, rgb(238,130,51) 100%);
  10. box-shadow: inset 0px 0px 0px #b3560b, 0px 6px 0px #b3560b;
  11. border-radius: 4px;
  12. text-transform: uppercase;
  13. font-weight: bold;
  14.  
  15. .button:hover {
  16. left: 8px;
  17. top: 20px;
  18. box-shadow: inset 0px 0px 0px #b3560b, inset 0px -1px 0px #b3560b;
  19. color: #fff;
  20. text-shadow: 0px 1px 1px rgba(255,255,255,0.3);
  21. background: rgb(238,129,41);
  22. text-transform: uppercase;
  23. font-weight: bold;
  24. background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0), rgba(300, 0, 0, 0.3));
  25. background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0), rgba(300, 0, 0, 0.4));
  26. background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(300, 0, 0, 0.3));
  27.  
  28. <div>
  29. <a href="#" class="button">Enroll Today</a>
  30. </div>
  31.  
  32. white-space: nowrap
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement