colors.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* ---------- Color Module Styles ----------- */
  2. body {
  3. color: #3b3b3b;
  4. background: #292929;
  5. }
  6. #page,
  7. #main-wrapper,
  8. .region-primary-menu .menu-item a.is-active,
  9. .region-primary-menu .menu-item--active-trail a {
  10. background: #fff;
  11. }
  12. .tabs ul.primary li a.is-active {
  13. background-color: #fff;
  14. }
  15. .tabs ul.primary li.is-active a {
  16. background-color: #fff;
  17. border-bottom-color: #fff;
  18. }
  19. #header {
  20. background-color: #1d84c3;
  21. background-image: -webkit-linear-gradient(top, #055a8e 0%, #1d84c3 100%);
  22. background-image: linear-gradient(to bottom, #055a8e 0%, #1d84c3 100%);
  23. }
  24. a,
  25. .link {
  26. color: #0071b3;
  27. }
  28. a:hover,
  29. a:focus,
  30. .link:hover,
  31. .link:focus {
  32. color: #018fe2;
  33. }
  34. a:active,
  35. .link:active {
  36. color: #23aeff;
  37. }
  38. .sidebar .block {
  39. background-color: #f6f6f2;
  40. border-color: #f9f9f9;
  41. }
  42. .site-footer {
  43. background: #292929;
  44. }
  45. .region-header,
  46. .region-header a,
  47. .region-header li a.is-active,
  48. .site-branding__text,
  49. .site-branding,
  50. .site-branding__text a,
  51. .site-branding a,
  52. .region-secondary-menu .menu-item a,
  53. .region-secondary-menu .menu-item a.is-active {
  54. color: #fffeff;
  55. }
  56. /* ---------- Color Form ----------- */
  57. [dir="rtl"] .color-form .color-palette {
  58. margin-left: 0;
  59. margin-right: 20px;
  60. }
  61. [dir="rtl"] .color-form .form-item label {
  62. float: right;
  63. }
  64. [dir="rtl"] .color-form .color-palette .lock {
  65. right: -20px;
  66. left: 0;
  67. }