Guest User

Untitled

a guest
Feb 16th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. .btn {
  2. margin: 20px;
  3. width: 250px;
  4. padding-left: 20px;
  5. padding-right: 20px;
  6. position: relative;
  7. -webkit-box-shadow: 0px 7px 18px 2px rgba(68, 138, 255, 0.4);
  8. box-shadow: 0px 7px 18px 2px rgba(68, 138, 255, 0.4);
  9. font-size: 16px;
  10. line-height: 58px;
  11. display: inline-block;
  12. font-weight: bold;
  13. color: rgb(68, 138, 255);
  14. border: 1px solid transparent;
  15. border-radius: 30px;
  16. text-decoration: none;
  17. text-align: center;
  18. transition: all 0.35s;
  19. -webkit-transition: all .35s;
  20. background-color: #fff;
  21. }
  22. .btn:active, .btn:focus {
  23. outline: none;
  24. text-decoration: none;
  25. }
  26. .btn:active {
  27. -webkit-box-shadow: none;
  28. box-shadow: none;
  29. }
  30. .btn:hover {
  31. color: white;
  32. background-color: rgb(68, 138, 255);
  33. background: -webkit-gradient(linear, left top, right top, from(#83b9ff), to(rgb(68, 138, 255))) !important;
  34. background: linear-gradient(to right, #83b9ff, rgb(68, 138, 255)) !important;
  35. }
  36. .btn:disabled {
  37. -webkit-box-shadow: none;
  38. box-shadow: none;
  39. color: #ccc;
  40. }
  41. .btn:disabled:hover {
  42. background-color: #ddd;
  43. background: -webkit-gradient(linear, left top, right top, from(#eee), to(#ddd)) !important;
  44. background: linear-gradient(to right, #eee, #ddd) !important;
  45. }
Add Comment
Please, Sign In to add comment