_misc.scss 710 B

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