category.scss 640 B

1234567891011121314151617181920212223242526272829303132
  1. .category {
  2. &__list {
  3. display: -webkit-flex;
  4. display: -ms-flex;
  5. display: flex;
  6. flex-direction: row;
  7. justify-content: flex-start;
  8. align-items: flex-start;
  9. align-content: flex-start;
  10. }
  11. li,
  12. &__item {
  13. padding-right: 5px;
  14. }
  15. a,
  16. &__link {
  17. line-height: 45px;
  18. display: block;
  19. font-family: $fontcuprum;
  20. font-weight: normal;
  21. // padding: 0 10px;
  22. margin-right: 15px;
  23. font-size: 17px;
  24. color: #3b434d;
  25. text-decoration: none;
  26. &:hover {
  27. color: #e65e26;
  28. }
  29. }
  30. }