organization.scss 1.1 KB

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