No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

111 líneas
2.3 KiB

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