organization.scss 1.1 KB

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