main.scss 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /**
  2. * @copyright 2015 by Tobias Reich
  3. */
  4. // Functions --------------------------------------------------------------- //
  5. @function black($opacity) {
  6. @return rgba(0, 0, 0, $opacity);
  7. }
  8. @function white($opacity) {
  9. @return rgba(255, 255, 255, $opacity);
  10. }
  11. // Properties -------------------------------------------------------------- //
  12. $shadow: 0 -1px 0 black(.2);
  13. // Colors ------------------------------------------------------------------ //
  14. $colorBlue : #2293EC;
  15. $colorRed : #d92c34;
  16. // Animations -------------------------------------------------------------- //
  17. $timing : cubic-bezier(.51, .92, .24, 1);
  18. $timingBounce : cubic-bezier(.51, .92, .24, 1.15);
  19. // Rest -------------------------------------------------------------------- //
  20. @import 'reset';
  21. * {
  22. -webkit-user-select: none;
  23. -moz-user-select: none;
  24. user-select: none;
  25. transition: color .3s, opacity .3s ease-out, transform .3s ease-out, box-shadow .3s;
  26. }
  27. html,
  28. body {
  29. min-height: 100%;
  30. }
  31. body {
  32. background-color: #1d1d1d;
  33. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  34. font-size: 12px;
  35. -webkit-font-smoothing: antialiased;
  36. -moz-font-smoothing: antialiased;
  37. -moz-osx-font-smoothing: grayscale;
  38. font-smoothing: antialiased;
  39. &.view { background-color: #0f0f0f; }
  40. }
  41. input {
  42. -webkit-user-select: text !important;
  43. -moz-user-select: text !important;
  44. user-select: text !important;
  45. }
  46. .svgsprite {
  47. display: none;
  48. }
  49. .iconic {
  50. width: 100%;
  51. height: 100%;
  52. }
  53. #upload { display: none; }
  54. // Files ------------------------------------------------------------------- //
  55. @import 'animations';
  56. @import 'content';
  57. @import 'basicContext.custom';
  58. @import 'basicContext.extended';
  59. @import 'header';
  60. @import 'imageview';
  61. @import 'sidebar';
  62. @import 'loading';
  63. @import 'message';
  64. @import 'multiselect';