Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. // ----
  2. // Sass (v3.4.11)
  3. // Compass (v1.0.3)
  4. // ----
  5.  
  6. @mixin backgrounds($palette) {
  7. @each $color-class, $color in $palette {
  8. .mck-th-bg-#{$color-class},
  9. .mck-th-bg-#{$color-class}--hover:hover,
  10. .mck-th-bg-#{$color-class}--after *:after{
  11. background-color: $color !important;
  12. border-color: transparent !important;
  13. //color: $white !important;
  14. }
  15. }
  16. }
  17.  
  18. $using-the-dls: #2166b1;
  19. $design-principles: #4356a5;
  20. $grid-page-structure-layout: #1ea9e1;
  21. $colors: #7e9aaa;
  22. $typography: #059ba7;
  23. $iconography: #136a84;
  24. $imagery: #67307e;
  25. $buttons-links-tooltips: #67307e;
  26. $content-feeds: #4356a5;
  27. $content-detail: #2166b1;
  28. $media-players: #1ea9e1;
  29. $form-layout: #7e9aaa;
  30. $form-fields: #059ba7;
  31. $form-validation: #136a84;
  32. $data-tables: #67307e;
  33. $data-visualizations: #4356a5;
  34. $masthead-footer: #4356a5;
  35. $navigation: #2166b1;
  36. $notifications-alerts: #1ea9e1;
  37. $search-results: #7e9aaa;
  38. $modals: #059ba7;
  39. $log-in: #136a84;
  40. $landing-page: #2166b1;
  41. $article-pages: #1ea9e1;
  42. $profile-page: #7e9aaa;
  43. $product-page: #059ba7;
  44. $search-and-results: #136a84;
  45. $form-pages: #67307e;
  46. $links-page: #4356a5;
  47. $visualizations-tables: #2166b1;
  48.  
  49. $palette-portal: (
  50. using-the-dls: $using-the-dls,
  51. design-principles: $design-principles,
  52. grid-page-structure-layout: $grid-page-structure-layout,
  53. colors: $colors,
  54. typography: $typography,
  55. iconography: $iconography,
  56. imagery: $imagery,
  57. buttons-links-tooltips: $buttons-links-tooltips,
  58. content-feeds: $content-feeds,
  59. content-detail: $content-detail,
  60. media-players: $media-players,
  61. form-layout: $form-layout,
  62. form-fields: $form-fields,
  63. form-validation: $form-validation,
  64. data-tables: $data-tables,
  65. data-visualizations: $data-visualizations,
  66. masthead-footer: $masthead-footer,
  67. navigation: $navigation,
  68. notifications-alerts: $notifications-alerts,
  69. search-results: $search-results,
  70. modals: $modals,
  71. log-in: $log-in,
  72. landing-page: $landing-page,
  73. article-pages: $article-pages,
  74. profile-page: $profile-page,
  75. product-page: $product-page,
  76. search-and: $search-and-results,
  77. form-pages: $form-pages,
  78. links-page: $links-page,
  79. visualizations-tables: $visualizations-tables
  80. );
  81.  
  82. @include backgrounds($palette-portal);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement