misc.css 951 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. -webkit-transition: color .3s, opacity .3s ease-out, -webkit-transform .3s ease-out, box-shadow .3s;
  32. -moz-transition: opacity .3s ease-out, -moz-transform .3s ease-out, box-shadow .3s;
  33. transition: color .3s, opacity .3s ease-out, transform .3s ease-out, box-shadow .3s;
  34. }
  35. input {
  36. -webkit-user-select: text !important;
  37. -moz-user-select: text !important;
  38. user-select: text !important;
  39. }