scrolling.scss 955 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .header.scrolling {
  2. position: fixed;
  3. width: 100%;
  4. top: 0;
  5. min-height: 60px;
  6. height: 60px;
  7. .logo--header {
  8. margin: 5px 0;
  9. }
  10. .slogan__text {
  11. display: none;
  12. }
  13. .region__img {
  14. margin-left: 35px;
  15. }
  16. .region__name {
  17. font-size: 0;
  18. color: transparent;
  19. width: 1px;
  20. position: relative;
  21. &:before {
  22. content: '';
  23. position: absolute;
  24. font-size: 20px;
  25. top: 50%;
  26. transform: translateY(-50%);
  27. width: 8px;
  28. height: 5px;
  29. background: url('../img/region_arrow_bottom@2x.png') 50% 50% / cover no-repeat;
  30. }
  31. }
  32. .floatmenu {
  33. display: -webkit-flex;
  34. display: -ms-flex;
  35. display: flex;
  36. }
  37. .search--float {
  38. display: block;
  39. }
  40. .special {
  41. display: none;
  42. }
  43. }
  44. .header.inner {
  45. @extend .header.scrolling;
  46. }