Advertisement
Guest User

Untitled

a guest
May 20th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.52 KB | None | 0 0
  1. @mixin respond($minWidth: null, $maxWidth: null) {
  2. @if $minWidth != null and $maxWidth == null {
  3. @media only screen and (min-width: $minWidth) {
  4. @content;
  5. }
  6. } @else if $minWidth == null and $maxWidth != null {
  7. @media only screen and (max-width: $maxWidth) {
  8. @content;
  9. }
  10. } @else {
  11. @media only screen and (min-width: $minWidth) and (max-width: $maxWidth) {
  12. @content;
  13. }
  14. }
  15. }
  16.  
  17. $default-transition: all 0.3s ease;
  18.  
  19. $colors: (
  20. 'black': #282828,
  21. 'dark-grey': #333,
  22. 'grey': #999,
  23. 'light-grey': #dadada,
  24. 'lightest-grey': #eee,
  25. 'white': #fff,
  26. 'yellow': #f8cb00,
  27. 'dark-yellow': #F5A623,
  28. 'light-yellow': #F9F6D2,
  29. 'cyan': #65c3df,
  30. 'turquoise': #45b7b0,
  31. 'red': #ee5757,
  32. 'light-red': #EFD8D8,
  33. 'dark-red': #ED5858,
  34. 'blue': #4a90e2,
  35. 'purple': #a488d6,
  36. 'success-green': #6AC259,
  37. 'green': #b8e986,
  38. 'aptoide-orange': #ff6d28,
  39. 'aptoide-orange-light': #ff7e42,
  40. 'border-grey': #e8e8e8,
  41. 'highlight-grey': #f3f4f5,
  42. 'myapps-filters-grey': #f8f8f8
  43. );
  44.  
  45. $fontWeightLight: 300;
  46. $fontWeightRegular: 400;
  47. $fontWeightMedium: 500;
  48. $fontWeightBold: 700;
  49.  
  50. $fontFace: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  51. $basicFontSize: 16px;
  52.  
  53. $fontSizeSmallest: 0.5rem;
  54. $fontSizeSmaller: 0.75rem;
  55. $fontSizeSmall: 0.875rem;
  56. $fontSizeDefault: 1rem;
  57. $fontSizeTitle: 1.5rem;
  58. $fontSizeTitleLg: 1.75rem;
  59. $fontSizeLg: 2rem;
  60.  
  61. $logoShadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  62.  
  63. $themes: (
  64. 'default': #E17117,
  65. 'grey': #9E9E9E,
  66. 'brown': #795548,
  67. 'black': #000000,
  68. 'lime': #CDDC39,
  69. 'green': #4CAF50,
  70. 'light-green': #8BC34A,
  71. 'teal': #009688,
  72. 'indigo': #3F51B5,
  73. 'blue-grey': #607D8B,
  74. 'light-blue': #03A9F4,
  75. 'deep-purple': #673AB7,
  76. 'pink': #E91E63,
  77. 'red': #F44336,
  78. 'orange': #FF9800,
  79. 'amber': #FFC107
  80. );
  81.  
  82. $zIndexes: (
  83. menu-bar: 100,
  84. menu-bar-logo-box-shaddow: 1,
  85. menu-bar-store-avatar-arrow-down: 1,
  86. aptd-dropdown: 200,
  87. aptd-dropdown-expanded-overlay: 199,
  88. dashboard-card-overlay-inner: 100,
  89. dashboard-card-overlay-inner-close-button: 150,
  90. dashboard-card-overlay-inner-header: 150,
  91. dashboard-card-overlay-inner-my-app-more-button: 150,
  92. dashboard-card-overlay-inner-spinner: 150,
  93. dashboard-card-message: 150,
  94. snack-bar: 350,
  95. dashboard-dropdown: 200,
  96. dashboard-dropdown-expanded-overlay: 199,
  97. dashboard-cp-section-switcher: 250,
  98. dashboard-card-expanded: 300,
  99. dashboard-card-expanded-overlay-outer: -1,
  100. layout-tooltip: 999,
  101. layout-dropdown: 998,
  102. panel-modal: 99999,
  103. panel-modal-title: 1000,
  104. panel-modal-closebtn: 99,
  105. panel-modal-bottom-fixed: 1000
  106. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement