main.scss 1.8 KB

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