mainlinks.scss 505 B

123456789101112131415161718192021222324252627
  1. .mainlinks {
  2. display: -webkit-flex;
  3. display: -ms-flex;
  4. display: flex;
  5. flex-direction: row;
  6. flex-wrap: nowrap;
  7. &__item {
  8. white-space: nowrap;
  9. word-wrap: normal;
  10. border-right: 1px solid #9e9e9e;
  11. padding: 0 8px;
  12. &:last-child {
  13. border: 0;
  14. padding-right: 0;
  15. }
  16. }
  17. &__link {
  18. color: #9e9e9e;
  19. text-decoration: underline;
  20. &:hover {
  21. text-decoration: none;
  22. }
  23. }
  24. }