misc.css 835 B

1234567891011121314151617181920212223242526272829303132333435
  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. -webkit-user-select: none;
  10. -moz-user-select: none;
  11. user-select: none;
  12. }
  13. body {
  14. background-color: #222;
  15. font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;
  16. font-size: 12px;
  17. -webkit-font-smoothing: antialiased;
  18. -moz-font-smoothing: antialiased;
  19. -moz-osx-font-smoothing: grayscale;
  20. font-smoothing: antialiased;
  21. }
  22. body.view {
  23. background-color: #0f0f0f;
  24. }
  25. .center {
  26. position: absolute;
  27. left: 50%;
  28. top:50%;
  29. }
  30. * {
  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. }