organization-list.scss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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. &:after {
  105. //content: url(../img/icon_leftbar_title_arrow1.png);
  106. }
  107. &.active:after {
  108. //transform: rotate(90deg);
  109. }
  110. & ul {
  111. display: none;
  112. background: #ebebeb;
  113. }
  114. &.active ul {
  115. display: block;
  116. }
  117. }
  118. &-link {
  119. color: #004d7b;
  120. text-decoration: none;
  121. font-size: 15px;
  122. padding: 8px;
  123. line-height: 19px;
  124. display: block;
  125. font-family: $fontcuprum;
  126. font-weight: normal;
  127. &:hover {
  128. background: #d2dee9;
  129. }
  130. }
  131. }
  132. }