organization-list.scss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. .organization-list {
  2. &__headline {
  3. height: 44px;
  4. margin-bottom: 15px;
  5. padding: 0 18px 0 56px;
  6. box-sizing: border-box;
  7. position: relative;
  8. display: -webkit-flex;
  9. display: -ms-flex;
  10. display: flex;
  11. flex-direction: row;
  12. justify-content: space-between;
  13. align-content: center;
  14. align-items: center;
  15. background: #ebebeb;
  16. z-index: 2;
  17. &:before {
  18. content: '';
  19. position: absolute;
  20. width: 49px;
  21. height: 49px;
  22. border-radius: 50%;
  23. left: -10px;
  24. top: -8px;
  25. border: 5px solid #ffffff;
  26. background: url(../img/icon_leftbar_innermenu_01@2x.png) center/50% 50% no-repeat #004d7b;
  27. }
  28. }
  29. &__headline-text {
  30. width: 900px;
  31. margin-right: 20px;
  32. font-family: $fontcuprum;
  33. font-size: 20px;
  34. font-weight: bold;
  35. color: #004d7b;
  36. overflow: hidden;
  37. }
  38. &__item {
  39. border: 1px solid #ebebeb;
  40. background: #fff;
  41. font-family: $fontcuprum;
  42. margin-bottom: 10px;
  43. position: relative;
  44. padding-right: 30px;
  45. display: flex;
  46. flex-direction: row;
  47. &-img {
  48. max-width: 110px;
  49. &-placeholder {
  50. width: 110px;
  51. height: 73px;
  52. background: #ccc;
  53. }
  54. &-container {
  55. margin: -1px 9px -1px -1px;
  56. }
  57. }
  58. &-title {
  59. height: 29px;
  60. margin: 5px 0 6px;
  61. overflow: hidden;
  62. &-link {
  63. display: table-cell;
  64. height: 29px;
  65. vertical-align: middle;
  66. font-size: 17px;
  67. line-height: 14px;
  68. color: #3b434d;
  69. text-decoration: none;
  70. }
  71. }
  72. &-description {
  73. height: 29px;
  74. overflow: hidden;
  75. font-family: $fontopensans;
  76. font-size: 13px;
  77. line-height: 14px;
  78. color: #3b434d;
  79. }
  80. &-link {
  81. display: block;
  82. width: 14px;
  83. height: 14px;
  84. position: absolute;
  85. top: 50%;
  86. right: 4px;
  87. margin-top: -7px;
  88. background: url(../img/icon_leftbar_title_arrow1.png) no-repeat;
  89. }
  90. &-badge {
  91. left: -1px;
  92. bottom: 6px;
  93. }
  94. }
  95. &__grid {
  96. margin: 10px 0;
  97. }
  98. &__side-menu {
  99. z-index: 2;
  100. position: relative;
  101. background: #ffffff;
  102. &-item {
  103. border-bottom: 1px solid #ebebeb;
  104. position: relative;
  105. &:after {
  106. content: url(../img/icon_leftbar_title_arrow1.png);
  107. transform: rotate(90deg);
  108. position: absolute;
  109. right: 5px;
  110. top: 10px;
  111. display: block;
  112. height: 20px;
  113. width: 15px;
  114. }
  115. &.active:after {
  116. transform: rotate(-90deg);
  117. }
  118. &.active ul {
  119. display: block;
  120. }
  121. }
  122. &-link {
  123. color: #004d7b;
  124. text-decoration: none;
  125. font-size: 16px;
  126. padding: 8px 25px 8px 8px;
  127. display: block;
  128. line-height: 19px;
  129. font-family: $fontcuprum;
  130. font-weight: normal;
  131. &:hover {
  132. background: #d2dee9;
  133. }
  134. }
  135. }
  136. &__side-submenu {
  137. display: none;
  138. background: #f7f7f7;
  139. .organization-list__side-menu-item.active & {
  140. display: block;
  141. }
  142. &-item {
  143. }
  144. &-link {
  145. color: #9b9b9b;
  146. text-decoration: none;
  147. font-size: 15px;
  148. padding: 8px 8px 8px 15px;
  149. display: block;
  150. line-height: 19px;
  151. font-family: $fontcuprum;
  152. font-weight: normal;
  153. position: relative;
  154. &:before {
  155. position: absolute;
  156. content: '>';
  157. left: 5px;
  158. top: 6px;
  159. font-size: 17px;
  160. }
  161. &:hover {
  162. background: #004d7b;
  163. color: #fff;
  164. }
  165. }
  166. }
  167. }