floatmenu.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .floatmenu {
  2. display: none;
  3. flex-direction: row;
  4. justify-content: flex-start;
  5. &__list {
  6. display: -webkit-flex;
  7. display: -ms-flex;
  8. display: flex;
  9. flex-direction: row;
  10. }
  11. &__item {
  12. margin-right: 25px;
  13. filter: grayscale(100) brightness(100) contrast(100);
  14. &:last-child {
  15. margin-right: 5px;
  16. }
  17. &:nth-child(1) {
  18. background: url('../img/floatmenu_01@2x.png') 0 50% / 30px auto no-repeat;
  19. }
  20. &:nth-child(2) {
  21. background: url('../img/floatmenu_02@2x.png') 0 50% / 30px auto no-repeat;
  22. }
  23. &:nth-child(3) {
  24. background: url('../img/floatmenu_03@2x.png') 0 50% / 30px auto no-repeat;
  25. }
  26. &:nth-child(4) {
  27. background: url('../img/floatmenu_04@2x.png') 0 50% / 30px auto no-repeat;
  28. }
  29. &:nth-child(5) {
  30. background: url('../img/floatmenu_05@2x.png') 0 50% / 30px auto no-repeat;
  31. }
  32. &:hover {
  33. filter: none;
  34. }
  35. &--active {
  36. filter: none;
  37. }
  38. }
  39. &__link {
  40. color: #eb914e;
  41. font-size: 15px;
  42. font-family: $fontcuprum;
  43. padding-left: 30px;
  44. padding-right: 5px;
  45. display: block;
  46. text-decoration: none;
  47. line-height: 50px;
  48. }
  49. }