specialization.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .specialization {
  2. display: block;
  3. &__title {
  4. color: #3b434d;
  5. a {
  6. text-decoration: none;
  7. color: #3b434d;
  8. }
  9. &::before {
  10. content: '';
  11. position: absolute;
  12. width: 51px;
  13. height: 51px;
  14. border-radius: 50%;
  15. left: -10px;
  16. top: -8px;
  17. border: 5px solid #ffffff;
  18. background: url("../img/icon_leftbar_innermenu_02@2x.png") 50% 50% / 20px 24px no-repeat #3b434d;
  19. }
  20. }
  21. &__list {
  22. width: 100%;
  23. margin-top: 5px;
  24. position: relative;
  25. z-index: 5;
  26. height: 0;
  27. overflow: hidden;
  28. transition: all .5s ease;
  29. background: #ffffff;
  30. &.active {
  31. height: auto;
  32. overflow: auto;
  33. transition: all .5s ease;
  34. }
  35. }
  36. &__item {
  37. border-bottom: 1px solid #ebebeb;
  38. }
  39. &__link {
  40. color: #3b434d;
  41. text-decoration: none;
  42. font-size: 15px;
  43. padding: 8px;
  44. line-height: 19px;
  45. display: block;
  46. font-family: $fontcuprum;
  47. font-weight: normal;
  48. &:hover {
  49. color: #004d7b;
  50. background: #d2dee9;
  51. }
  52. }
  53. }