main.scss 969 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /**
  2. * @copyright 2015 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 { background-color: #0f0f0f; }
  25. }
  26. input {
  27. -webkit-user-select: text !important;
  28. -moz-user-select: text !important;
  29. user-select: text !important;
  30. }
  31. .iconic {
  32. width: 100%;
  33. height: 100%;
  34. }
  35. #upload { display: none; }
  36. @import 'animations';
  37. @import 'content';
  38. @import 'contextmenu';
  39. @import 'header';
  40. @import 'imageview';
  41. @import 'infobox';
  42. @import 'loading';
  43. @import 'message';
  44. @import 'multiselect';
  45. @import 'mediaquery';