main.scss 1016 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. .iconic {
  38. width: 100%;
  39. height: 100%;
  40. }
  41. @import 'animations';
  42. @import 'content';
  43. @import 'contextmenu';
  44. @import 'font';
  45. @import 'header';
  46. @import 'imageview';
  47. @import 'infobox';
  48. @import 'loading';
  49. @import 'message';
  50. @import 'multiselect';
  51. @import 'upload';
  52. @import 'mediaquery';