organization.scss 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476
  1. $organizationInfoSelector: 'organization-info';
  2. $organizationMediaSelector: 'organization-media';
  3. .#{$organizationInfoSelector} {
  4. &__container {
  5. box-sizing: border-box;
  6. border: 1px solid #ebebeb;
  7. border-radius: 10px 0 0 0;
  8. padding: 0 2px 0 9px;
  9. margin-bottom: 10px;
  10. }
  11. &__header {
  12. margin-bottom: 30px;
  13. }
  14. &__title {
  15. font-family: $fontcuprum;
  16. font-size: 32px;
  17. font-weight: bold;
  18. color: #004d7b;
  19. padding: 3px 0 0 0;
  20. margin-bottom: 5px;
  21. }
  22. &__vrach-img {
  23. position: relative;
  24. }
  25. &__staz {
  26. position: absolute;
  27. background: #ebebeb;
  28. padding: 5px 10px;
  29. border-radius: 0 10px 0 10px;
  30. bottom: 0;
  31. right: 18px;
  32. width: 32px;
  33. height: 55px;
  34. text-align: center;
  35. font-size: 13px;
  36. color: #929292;
  37. }
  38. &__staz span {
  39. font-size: 18px;
  40. color: #004d7b;
  41. }
  42. &__sub-title {
  43. font-family: $fontcuprum;
  44. font-size: 18px;
  45. font-weight: bold;
  46. color: #3b434d;
  47. }
  48. &__logo {
  49. margin-bottom: 3px;
  50. max-width: 100%;
  51. height: auto;
  52. }
  53. &__address {
  54. font-size: 14px;
  55. line-height: 16px;
  56. text-align: center;
  57. color: #929292;
  58. margin-bottom: 13px;
  59. }
  60. &__map-link {
  61. background: #ebebeb;
  62. padding: 6px 10px;
  63. text-align: center;
  64. font-size: 13px;
  65. margin-bottom: 10px;
  66. color: #929292;
  67. display: block;
  68. &:hover {
  69. background: #d2dee9;
  70. }
  71. }
  72. &__map-container {
  73. width: 700px;
  74. max-width: 100%;
  75. position: relative;
  76. padding-top: 100%;
  77. }
  78. &__map {
  79. position: absolute;
  80. top: 0;
  81. bottom: 0;
  82. left: 0;
  83. right: 0;
  84. }
  85. &__contacts {
  86. &-header {
  87. font-family: $fontcuprum;
  88. font-size: 13px;
  89. color: #929292;
  90. margin-bottom: 2px;
  91. display: block;
  92. }
  93. &-phone {
  94. font-family: $fontcuprum;
  95. padding: 2px 0 1px 25px;
  96. background: url(../img/icon_contact_01.png) no-repeat left center;
  97. margin-bottom: 4px;
  98. display: block;
  99. }
  100. &-skype {
  101. font-family: $fontcuprum;
  102. padding: 2px 0 1px 25px;
  103. background: url(../img/skype.png) no-repeat left center;
  104. margin-bottom: 4px;
  105. display: block;
  106. }
  107. &-show-phones {
  108. font-family: $fontcuprum;
  109. font-size: 13px;
  110. padding-left: 4px;
  111. margin-bottom: 5px;
  112. text-decoration: none;
  113. color: #929292;
  114. &:after {
  115. font-family: $fontcuprum;
  116. content: '>';
  117. display: inline-block;
  118. width: 7px;
  119. height: 7px;
  120. margin-left: 5px;
  121. }
  122. }
  123. &-email {
  124. font-family: $fontcuprum;
  125. padding: 2px 0 1px 25px;
  126. background: url(../img/icon_contact_03.png) no-repeat left center;
  127. margin-bottom: 5px;
  128. color: #004d7b;
  129. text-decoration: none;
  130. display: block;
  131. }
  132. &-site {
  133. font-family: $fontcuprum;
  134. padding: 2px 0 1px 25px;
  135. background: url(../img/icon_contact_02.png) no-repeat left center;
  136. color: #004d7b;
  137. text-decoration: none;
  138. display: block;
  139. text-overflow: ellipsis;
  140. white-space: nowrap;
  141. overflow: hidden;
  142. }
  143. &-workmode {
  144. font-family: $fontcuprum;
  145. line-height: 22px;
  146. margin-bottom: 32px;
  147. display: block;
  148. }
  149. }
  150. &__description {
  151. font-family: $fontopensans;
  152. font-size: 15px;
  153. line-height: 18px;
  154. position: relative;
  155. overflow: hidden;
  156. max-height: none;
  157. p {
  158. margin: 10px 0;
  159. }
  160. &--short {
  161. max-height: 100px;
  162. &:after {
  163. background: rgba(0, 0, 0, 0) linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%) repeat scroll 0 0;
  164. bottom: 0;
  165. content: "";
  166. display: block;
  167. height: 100px;
  168. left: 0;
  169. position: absolute;
  170. right: 0;
  171. }
  172. }
  173. }
  174. &__description-read-more {
  175. text-align: center;
  176. font-family: $fontopensans;
  177. font-size: 13px;
  178. color: #004d7b;
  179. padding-top: 3px;
  180. margin-bottom: 29px;
  181. cursor: pointer;
  182. }
  183. &__menu-vrachi {
  184. box-sizing: border-box;
  185. vertical-align: top;
  186. font-size: 15px;
  187. margin-left: 10px;
  188. margin-top: 0px;
  189. padding-left: 0px;
  190. min-height: 165px;
  191. max-width: 230px;
  192. font-family: $fontcuprum;
  193. &-header {
  194. font-family: $fontcuprum;
  195. font-size: 13px;
  196. color: #929292;
  197. margin-bottom: 2px;
  198. display: block;
  199. margin-left: 5px;
  200. }
  201. &-item {
  202. }
  203. &-link {
  204. display: block;
  205. padding: 7px 6px;
  206. line-height: 14px;
  207. color: #004d7b;
  208. text-decoration: none;
  209. #{$organizationInfoSelector}--active &,
  210. &:hover {
  211. background: #ebebeb;
  212. }
  213. #{$organizationInfoSelector}--active & {
  214. color: #929292;
  215. }
  216. }
  217. }
  218. &__menu {
  219. box-sizing: border-box;
  220. vertical-align: top;
  221. font-size: 15px;
  222. margin-left: 14px;
  223. margin-top: -6px;
  224. padding-left: 3px;
  225. border-left: 1px solid #ebebeb;
  226. max-width: 230px;
  227. font-family: $fontcuprum;
  228. &-item {
  229. }
  230. &-link {
  231. display: block;
  232. padding: 7px 6px;
  233. line-height: 14px;
  234. color: #004d7b;
  235. text-decoration: none;
  236. #{$organizationInfoSelector}--active &,
  237. &:hover {
  238. background: #ebebeb;
  239. }
  240. #{$organizationInfoSelector}--active & {
  241. color: #929292;
  242. }
  243. }
  244. }
  245. &__show-services {
  246. background: #ebebeb;
  247. padding: 6px 10px;
  248. text-align: center;
  249. font-size: 13px;
  250. margin-bottom: 10px;
  251. color: #929292;
  252. display: block;
  253. font-family: $fontcuprum;
  254. text-decoration: none;
  255. }
  256. &__documents {
  257. background: #ebebeb;
  258. min-width: 100%;
  259. td {
  260. border: none;
  261. padding: 5px;
  262. vertical-align: top;
  263. font-family: $fontopensans;
  264. font-size: 13px;
  265. line-height: 15px;
  266. color: #3b434d;
  267. @media screen and (max-width: 768px) {
  268. display: block;
  269. }
  270. }
  271. tr td:first-child {
  272. padding-right: 19px;
  273. }
  274. tr:first-child td {
  275. padding-top: 10px;
  276. }
  277. tr:last-child td {
  278. padding-bottom: 7px;
  279. }
  280. a {
  281. display: block;
  282. color: #004d7b;
  283. text-decoration: none;
  284. position: relative;
  285. padding-left: 20px;
  286. }
  287. .table_icon:before {
  288. content: '';
  289. display: inline-block;
  290. width: 13px;
  291. height: 15px;
  292. margin: 0 5px 0 0;
  293. position: absolute;
  294. top: 0;
  295. left: 0;
  296. background: url(../img/icon_table_link.png);
  297. }
  298. }
  299. &__socials {
  300. filter: grayscale(1);
  301. & > li {
  302. display: inline-block;
  303. }
  304. }
  305. &__slidedown {
  306. margin-bottom: 14px;
  307. &-title {
  308. font-family: $fontcuprum;
  309. padding: 9px 0;
  310. position: relative;
  311. font-size: 20px;
  312. font-weight: 600;
  313. color: #3b434d;
  314. }
  315. &-subtitle {
  316. color: #004d7b;
  317. font-size: 13px;
  318. display: block;
  319. }
  320. &-mesto {
  321. color: #929292;
  322. font-size: 13px;
  323. }
  324. &-content {
  325. }
  326. &-handler {
  327. position: absolute;
  328. top: 50%;
  329. right: 3px;
  330. width: 15px;
  331. height: 9px;
  332. margin-top: -4px;
  333. cursor: pointer;
  334. background: url(../img/blockslide_sprite.png) no-repeat;
  335. }
  336. }
  337. &__administration-content {
  338. padding-left: 10px;
  339. }
  340. &__sub-organizations {
  341. &-header {
  342. font-family: $fontcuprum;
  343. font-size: 20px;
  344. font-weight: bold;
  345. color: #3b434d;
  346. margin-bottom: 10px;
  347. }
  348. }
  349. }
  350. .#{$organizationMediaSelector} {
  351. &__container {
  352. font-family: $fontcuprum;
  353. border: 1px solid #ebebeb;
  354. padding: 8px 9px 0 9px;
  355. }
  356. &__header {
  357. color: #3b434d;
  358. font-size: 17px;
  359. font-weight: 600;
  360. margin-bottom: 17px;
  361. }
  362. &__list {
  363. font-family: $fontopensans;
  364. font-size: 15px;
  365. margin-bottom: 5px;
  366. display: block;
  367. &-item {
  368. margin-bottom: 3px;
  369. display: block;
  370. text-decoration: none;
  371. color: #000000;
  372. &:hover {
  373. text-decoration: underline;
  374. }
  375. }
  376. }
  377. &__slider {
  378. margin: 0 30px 13px !important;
  379. width: calc(100% - 60px);
  380. &-slide {
  381. text-align: center;
  382. &-content {
  383. max-width: 200px;
  384. margin: 0 auto;
  385. }
  386. }
  387. .slick-arrow {
  388. width: 25px;
  389. height: 45px;
  390. position: absolute;
  391. top: 50%;
  392. margin-top: -23px;
  393. cursor: pointer;
  394. background-image: url(../img/slider/slidersprite.png);
  395. &.slick-prev {
  396. background-position: left top;
  397. left: -27px;
  398. &:hover {
  399. background-position: left bottom;
  400. }
  401. }
  402. &.slick-next {
  403. background-position: right top;
  404. right: -27px;
  405. &:hover {
  406. background-position: right bottom;
  407. }
  408. }
  409. }
  410. }
  411. }