main.scss 974 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /**
  2. * @copyright 2014 by Tobias Reich
  3. */
  4. @import 'reset';
  5. * {
  6. -webkit-user-select: none;
  7. -moz-user-select: none;
  8. user-select: none;
  9. transition: color .3s, opacity .3s ease-out, transform .3s ease-out, box-shadow .3s;
  10. }
  11. html,
  12. body {
  13. min-height: 100%;
  14. }
  15. body {
  16. background-color: #222;
  17. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  18. font-size: 12px;
  19. -webkit-font-smoothing: antialiased;
  20. -moz-font-smoothing: antialiased;
  21. -moz-osx-font-smoothing: grayscale;
  22. font-smoothing: antialiased;
  23. &.view {
  24. background-color: #0f0f0f;
  25. }
  26. }
  27. .center {
  28. position: absolute;
  29. left: 50%;
  30. top:50%;
  31. }
  32. input {
  33. -webkit-user-select: text !important;
  34. -moz-user-select: text !important;
  35. user-select: text !important;
  36. }
  37. @import 'animations';
  38. @import 'content';
  39. @import 'contextmenu';
  40. @import 'font';
  41. @import 'header';
  42. @import 'imageview';
  43. @import 'infobox';
  44. @import 'loading';
  45. @import 'message';
  46. @import 'multiselect';
  47. @import 'upload';
  48. @import 'mediaquery';