Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

80 строки
1.8 KiB

  1. header {
  2. .inside {
  3. @include make-container();
  4. max-width: 1280px;
  5. padding-top: 45px;
  6. padding-bottom: 25px;
  7. display: flex;
  8. justify-content: space-between;
  9. align-items: center;
  10. @media (min-width: 576px) {
  11. padding-top: 45px;
  12. padding-bottom: 25px;
  13. }
  14. }
  15. .ce_image {
  16. img {
  17. max-width: 198px;
  18. @media (min-width: 576px) {
  19. max-width: 198px;
  20. }
  21. }
  22. }
  23. .mod_navigation {
  24. ul {
  25. display: flex;
  26. justify-content: flex-start;
  27. }
  28. li {
  29. margin-left: 22px;
  30. a, strong {
  31. display: block;
  32. width: 125px;
  33. padding: 10px 0;
  34. text-decoration: none;
  35. font-weight: 700;
  36. color: $font;
  37. text-align: center;
  38. background: #F5F5F5;
  39. border: 1px solid #F5F5F5;
  40. border-radius: 20px;
  41. @include transition();
  42. &:hover {
  43. color: $secondary;
  44. border-color: $secondary;
  45. }
  46. &.active,
  47. &.trail {
  48. background: $secondary;
  49. border-color: $secondary;
  50. &:hover {
  51. color: $font;
  52. }
  53. }
  54. &.isotope-basket {
  55. position: relative;
  56. background: $tertiary url("../images/elements/basket.svg") no-repeat 15px 9px;
  57. background-size: 24px auto;
  58. border-color: $tertiary;
  59. text-indent: -9999px;
  60. width: 78px;
  61. &:hover {
  62. background-color: #F5F5F5;
  63. border-color: $secondary;
  64. color: $font;
  65. }
  66. }
  67. }
  68. }
  69. }
  70. #header-basket-items {
  71. position: absolute;
  72. right: 15px;
  73. top: 50%;
  74. transform: translate(0,-50%);
  75. text-indent: 0;
  76. }
  77. }