misc.scss 764 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * @name misc.css
  3. * @author Tobias Reich
  4. * @copyright 2014 by Tobias Reich
  5. */
  6. html,
  7. body {
  8. min-height: 100%;
  9. }
  10. body {
  11. background-color: #222;
  12. font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;
  13. font-size: 12px;
  14. -webkit-font-smoothing: antialiased;
  15. -moz-font-smoothing: antialiased;
  16. -moz-osx-font-smoothing: grayscale;
  17. font-smoothing: antialiased;
  18. }
  19. body.view {
  20. background-color: #0f0f0f;
  21. }
  22. .center {
  23. position: absolute;
  24. left: 50%;
  25. top:50%;
  26. }
  27. * {
  28. -webkit-user-select: none;
  29. -moz-user-select: none;
  30. user-select: none;
  31. transition: color .3s, opacity .3s ease-out, transform .3s ease-out, box-shadow .3s;
  32. }
  33. input {
  34. -webkit-user-select: text !important;
  35. -moz-user-select: text !important;
  36. user-select: text !important;
  37. }