Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. .button {
  2. -webkit-appearance: none;
  3. -moz-appearance: none;
  4. -ms-appearance: none;
  5. -o-appearance: none;
  6. appearance: none;
  7. background-color: #C85300;
  8. border-radius: 4px;
  9. border: none;
  10. color: #fff;
  11. cursor: pointer;
  12. display: inline-block;
  13. font-family: Arial, Helvetica, "Lucida Grande", Tahoma, Verdana, sans-serif;
  14. font-size: 100%;
  15. font-weight: 600;
  16. line-height: 1;
  17. padding: .8em 1em;
  18. text-decoration: none;
  19. -webkit-user-select: none;
  20. -moz-user-select: none;
  21. -ms-user-select: none;
  22. user-select: none;
  23. vertical-align: middle;
  24. white-space: nowrap; }
  25. .button:hover, .button:focus {
  26. background-color: #d06b24;
  27. color: #fff; }
  28. .button:disabled {
  29. cursor: not-allowed;
  30. background-color: #e6b28c; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement