main.scss 1003 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /**
  2. * @copyright 2014 by Tobias Reich
  3. */
  4. @import "reset";
  5. html,
  6. body {
  7. min-height: 100%;
  8. }
  9. body {
  10. background-color: #222;
  11. font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;
  12. font-size: 12px;
  13. -webkit-font-smoothing: antialiased;
  14. -moz-font-smoothing: antialiased;
  15. -moz-osx-font-smoothing: grayscale;
  16. font-smoothing: antialiased;
  17. }
  18. body.view {
  19. background-color: #0f0f0f;
  20. }
  21. .center {
  22. position: absolute;
  23. left: 50%;
  24. top:50%;
  25. }
  26. * {
  27. -webkit-user-select: none;
  28. -moz-user-select: none;
  29. user-select: none;
  30. transition: color .3s, opacity .3s ease-out, transform .3s ease-out, box-shadow .3s;
  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 "misc";
  47. @import "multiselect";
  48. @import "tooltip";
  49. @import "upload";
  50. @import "mediaquery";