You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
703 B

9 years ago
  1. /*!
  2. Pure v0.6.0
  3. Copyright 2014 Yahoo! Inc. All rights reserved.
  4. Licensed under the BSD License.
  5. https://github.com/yahoo/pure/blob/master/LICENSE.md
  6. */
  7. .pure-button {
  8. /* Structure */
  9. display: inline-block;
  10. zoom: 1;
  11. line-height: normal;
  12. white-space: nowrap;
  13. vertical-align: middle;
  14. text-align: center;
  15. cursor: pointer;
  16. -webkit-user-drag: none;
  17. -webkit-user-select: none;
  18. -moz-user-select: none;
  19. -ms-user-select: none;
  20. user-select: none;
  21. -webkit-box-sizing: border-box;
  22. -moz-box-sizing: border-box;
  23. box-sizing: border-box;
  24. }
  25. /* Firefox: Get rid of the inner focus border */
  26. .pure-button::-moz-focus-inner {
  27. padding: 0;
  28. border: 0;
  29. }