adjacent-specialization.scss 614 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .adjacent-specialization {
  2. &__item {
  3. &:hover {
  4. background: #f0f0f0;
  5. }
  6. }
  7. &__data {
  8. }
  9. &__title {
  10. height: 20px;
  11. overflow: hidden;
  12. font-size: 13px;
  13. font-weight: bold;
  14. color: #929292;
  15. white-space: nowrap;
  16. text-overflow: ellipsis;
  17. }
  18. &__value {
  19. height: 29px;
  20. font-size: 15px;
  21. line-height: 14px;
  22. font-weight: bold;
  23. color: #3b434d;
  24. overflow: hidden;
  25. }
  26. &__list {
  27. &:before {
  28. display: none;
  29. }
  30. margin: 20px 0;
  31. }
  32. }