main.scss 1.0 KB

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