Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

533 wiersze
12 KiB

  1. #static-election static-election-overview {
  2. display: block;
  3. }
  4. #static-election #static-election-detail {
  5. display: none;
  6. }
  7. #static-election button.search-submit.secondary {
  8. background-color: #003366;
  9. color: #fff;
  10. }
  11. #static-election button.search-submit.secondary:hover {
  12. background-color: #E3EBF5;
  13. color: #003366;
  14. }
  15. #static-election .election-form {
  16. --theme-color-link: #fff;
  17. --theme-color-link-hover: #fff;
  18. font-size: 16px;
  19. background: linear-gradient(140deg, #003366 30%, #4BA490 75%, #AFCC7A 108%);
  20. padding: 30px 30px 0 30px;
  21. border-radius: 4px;
  22. color: #fff;
  23. margin-bottom: 20px;
  24. }
  25. @media (max-width: 567px) {
  26. #static-election .election-form {
  27. padding-bottom: 14px;
  28. }
  29. }
  30. #static-election .election-form h2 {
  31. margin-top: -0.3em;
  32. margin-bottom: 0.9em;
  33. font-size: 36px;
  34. }
  35. @media (max-width: 767px) {
  36. #static-election .election-form h2 {
  37. font-size: 24px;
  38. }
  39. }
  40. #static-election .election-form--form {
  41. display: flex;
  42. justify-content: space-between;
  43. align-items: center;
  44. flex-wrap: nowrap;
  45. }
  46. @media (max-width: 767px) {
  47. #static-election .election-form--form {
  48. flex-wrap: wrap;
  49. }
  50. }
  51. @media (max-width: 567px) {
  52. #static-election .election-form--form {
  53. flex-wrap: nowrap;
  54. flex-direction: column;
  55. align-items: flex-end;
  56. }
  57. }
  58. #static-election .election-form button.search-submit {
  59. position: static;
  60. margin-bottom: 14px;
  61. }
  62. @media (max-width: 567px) {
  63. #static-election .election-form button.search-submit {
  64. margin-bottom: 0;
  65. }
  66. }
  67. #static-election .election-form .input-wrapper {
  68. flex: 1;
  69. display: flex;
  70. }
  71. @media (max-width: 767px) {
  72. #static-election .election-form .input-wrapper {
  73. flex: initial;
  74. width: calc(50% - 15px);
  75. }
  76. }
  77. @media (max-width: 567px) {
  78. #static-election .election-form .input-wrapper {
  79. width: 100%;
  80. }
  81. }
  82. #static-election .election-form .input-wrapper input,
  83. #static-election .election-form .input-wrapper select {
  84. margin: 0 30px 14px 0;
  85. }
  86. @media (max-width: 767px) {
  87. #static-election .election-form .input-wrapper input,
  88. #static-election .election-form .input-wrapper select {
  89. margin-right: 0;
  90. }
  91. }
  92. #static-election .election-form .input-wrapper input {
  93. width: 100%;
  94. flex-grow: 1;
  95. }
  96. @media (max-width: 567px) {
  97. #static-election .election-form .input-wrapper {
  98. display: block;
  99. }
  100. }
  101. #static-election .election-result-list-badge .badge-inner {
  102. padding: 6px 15px;
  103. background: #E3EBF5;
  104. border-radius: 18px;
  105. margin-bottom: 8px;
  106. }
  107. #static-election .election-result-list-badge p {
  108. font-family: "Korb", sans-serif;
  109. font-weight: bold;
  110. margin: 0;
  111. }
  112. #static-election .election-result-list-badge p span {
  113. padding-left: 5px;
  114. font-weight: normal;
  115. }
  116. #static-election .election-result-list-badge.inverted p {
  117. color: #fff;
  118. transition: 0.25s ease;
  119. }
  120. #static-election .election-result-list-badge.inverted .badge-inner {
  121. background: #003366;
  122. transition: 0.25s ease;
  123. }
  124. #static-election .election-result-list-badge.inverted .badge-inner:hover {
  125. background-color: #E3EBF5;
  126. }
  127. #static-election .election-result-list-badge.inverted .badge-inner:hover p {
  128. color: #003366;
  129. }
  130. #static-election .election-result-list-badge.closable {
  131. cursor: pointer;
  132. }
  133. #static-election .election-result-list-badge.closable .badge-inner {
  134. padding-left: 48px;
  135. position: relative;
  136. }
  137. #static-election .election-result-list-badge.closable .badge-inner:before {
  138. content: '\e82d';
  139. font-family: 'Icons', sans-serif;
  140. position: absolute;
  141. left: 15px;
  142. top: 50%;
  143. margin-top: -9px;
  144. color: #fff;
  145. display: block;
  146. text-align: center;
  147. font-size: 18px;
  148. line-height: 1;
  149. transition: 0.25s ease;
  150. }
  151. #static-election .election-result-list-badge.closable .badge-inner:hover:before {
  152. color: #003366;
  153. }
  154. #static-election .election-result-list-item {
  155. display: flex;
  156. flex-direction: column;
  157. justify-content: space-between;
  158. border-radius: 4px;
  159. background: #EFF3F6;
  160. text-decoration: none;
  161. width: 312px;
  162. }
  163. @media (max-width: 693px) {
  164. #static-election .election-result-list-item {
  165. width: 100%;
  166. }
  167. }
  168. @media (max-width: 356px) {
  169. #static-election .election-result-list-item {
  170. max-width: none;
  171. }
  172. }
  173. #static-election .election-result-list-item .top-box {
  174. display: block;
  175. cursor: pointer;
  176. }
  177. #static-election .election-result-list-item .image-box {
  178. position: relative;
  179. width: 100%;
  180. padding-bottom: 100%;
  181. border-top-left-radius: 4px;
  182. border-top-right-radius: 4px;
  183. }
  184. #static-election .election-result-list-item img {
  185. position: absolute;
  186. display: block;
  187. width: 100%;
  188. height: 100%;
  189. object-fit: cover;
  190. border-top-left-radius: 4px;
  191. border-top-right-radius: 4px;
  192. }
  193. #static-election .election-result-list-item .text-box {
  194. padding: 10px;
  195. }
  196. #static-election .election-result-list-item h3 {
  197. font-size: 28px;
  198. line-height: 32px;
  199. margin: 5px 10px 15px 10px;
  200. text-decoration: underline;
  201. word-break: break-word;
  202. -webkit-hyphens: auto;
  203. -moz-hyphens: auto;
  204. hyphens: auto;
  205. }
  206. #static-election .election-result-list-item .job-box,
  207. #static-election .election-result-list-item .city-box {
  208. margin-bottom: 5px;
  209. background: #E3EBF5;
  210. border-radius: 4px;
  211. padding: 4px 0 2px 0;
  212. }
  213. @media (max-width: 567px) {
  214. #static-election .election-result-list-item .job-box,
  215. #static-election .election-result-list-item .city-box {
  216. display: none;
  217. }
  218. }
  219. #static-election .election-result-list-item .job-box a,
  220. #static-election .election-result-list-item .job-box span,
  221. #static-election .election-result-list-item .city-box a,
  222. #static-election .election-result-list-item .city-box span {
  223. display: block;
  224. position: relative;
  225. width: calc(100% - 8px);
  226. margin: 0;
  227. padding: 0 0 0 26px;
  228. font-size: 16px;
  229. line-height: 18px;
  230. white-space: nowrap;
  231. overflow: hidden;
  232. text-overflow: ellipsis;
  233. cursor: pointer;
  234. }
  235. #static-election .election-result-list-item .job-box a:before,
  236. #static-election .election-result-list-item .job-box span:before,
  237. #static-election .election-result-list-item .city-box a:before,
  238. #static-election .election-result-list-item .city-box span:before {
  239. position: absolute;
  240. left: 4px;
  241. top: 50%;
  242. font-family: "Icons";
  243. transform: translate(0, -50%);
  244. }
  245. #static-election .election-detail {
  246. margin: 0 0 80px 0;
  247. }
  248. #static-election .election-detail--text {
  249. display: flex;
  250. justify-content: space-between;
  251. align-items: flex-start;
  252. background: #E3EBF5;
  253. padding: 0 0 30px 0;
  254. }
  255. @media (max-width: 1100px) {
  256. #static-election .election-detail--text {
  257. display: block;
  258. }
  259. }
  260. #static-election .election-detail--text img {
  261. display: block;
  262. width: 545px;
  263. margin: 0 40px 0 0;
  264. }
  265. @media (max-width: 1100px) {
  266. #static-election .election-detail--text img {
  267. width: 100%;
  268. }
  269. }
  270. #static-election .election-detail--text .text-box {
  271. flex: 1;
  272. padding-right: 1.5rem;
  273. }
  274. @media (max-width: 1100px) {
  275. #static-election .election-detail--text .text-box {
  276. padding-left: 15px;
  277. padding-right: 15px;
  278. }
  279. }
  280. #static-election .election-detail--text h1 {
  281. margin: 1.5rem 0;
  282. }
  283. #static-election .election-detail--text h2 {
  284. margin: 0 0 0.75rem 0;
  285. font-size: 36px;
  286. line-height: 42px;
  287. }
  288. #static-election .election-detail--text p {
  289. margin: 0 0 1.5rem 0;
  290. }
  291. #static-election .election-detail--text p.subheadline {
  292. margin: -1rem 0 1.5rem 0;
  293. font-weight: 600;
  294. }
  295. #static-election .election-detail--text .social-media p {
  296. font-size: 1rem;
  297. text-transform: uppercase;
  298. margin: 0 0 0.5rem 0;
  299. }
  300. #static-election .election-detail--text .social-media .social-icons a:before {
  301. color: #003366;
  302. }
  303. #static-election .election-detail--text .social-media .social-icons a:hover:before {
  304. color: #56BD66;
  305. }
  306. #static-election .election-detail--video {
  307. padding: 30px 0;
  308. background: #B0C4D6;
  309. }
  310. @media (max-width: 1100px) {
  311. #static-election .election-detail--video {
  312. background: none;
  313. }
  314. }
  315. #static-election .election-detail--video .video-container {
  316. margin: 0 auto;
  317. max-width: 976px;
  318. }
  319. @media (max-width: 1100px) {
  320. #static-election .election-detail--video .video-container {
  321. width: 100%;
  322. max-width: none;
  323. }
  324. }
  325. #static-election .election-detail--video .video-container .video {
  326. margin: 0;
  327. }
  328. #static-election .election-detail--info {
  329. display: flex;
  330. justify-content: space-between;
  331. background: #003366;
  332. color: #fff;
  333. }
  334. @media (max-width: 1023px) {
  335. #static-election .election-detail--info {
  336. display: block;
  337. background: none;
  338. }
  339. }
  340. #static-election .election-detail--info .info-box {
  341. flex: 1;
  342. padding: 30px 20px;
  343. display: flex;
  344. flex-direction: column;
  345. justify-content: space-between;
  346. }
  347. @media (max-width: 1023px) {
  348. #static-election .election-detail--info .info-box {
  349. background: #003366;
  350. margin: 0 0 5px 0;
  351. }
  352. }
  353. #static-election .election-detail--info .info-headline {
  354. display: block;
  355. font-size: 16px;
  356. text-transform: uppercase;
  357. margin-bottom: 2px;
  358. letter-spacing: 0.3px;
  359. }
  360. @media (max-width: 767px) {
  361. #static-election .election-detail--info .info-headline {
  362. font-size: 14px;
  363. }
  364. }
  365. #static-election .election-detail--info .info-headline + h1 {
  366. margin-top: 0.1em;
  367. }
  368. #static-election .election-detail--info .info-headline + h2, .election-detail--info .info-headline + h3, .election-detail--info .info-headline + h4 {
  369. margin-top: 0.2em;
  370. }
  371. #static-election .election-detail--info .info-box--content p {
  372. font-size: 18px;
  373. line-height: 27px;
  374. margin: 0 0 5px 0;
  375. }
  376. #static-election .election-detail--info .info-box--content p.headline {
  377. font-weight: 600;
  378. margin: 0;
  379. }
  380. #static-election .election-detail--info .info-box--content p.address {
  381. margin-bottom: 10px;
  382. }
  383. #static-election .election-detail--info .info-box--text {
  384. font-size: 36px;
  385. line-height: 44px;
  386. margin: 0;
  387. font-family: 'Korb', sans-serif;
  388. }
  389. @media (max-width: 767px) {
  390. #static-election .election-detail--info .info-box--text {
  391. font-size: 24px;
  392. line-height: 29px;
  393. }
  394. }
  395. #static-election .election-detail--info a {
  396. color: #fff;
  397. }
  398. #static-election .election-detail--info a:hover {
  399. color: #56BD66;
  400. }
  401. #static-election .election-detail--back {
  402. background: #E3EBF5;
  403. display: flex;
  404. justify-content: center;
  405. padding: 30px 15px;
  406. margin: 20px 0 0 0;
  407. }
  408. #static-election .election-detail--more {
  409. margin: 60px 0 0 0 !important;
  410. max-width: none !important;
  411. }
  412. #static-election .election-result-list .election-result-list--header {
  413. display: flex;
  414. justify-content: space-between;
  415. padding-bottom: 20px;
  416. }
  417. @media (max-width: 767px) {
  418. #static-election .election-result-list .election-result-list--header {
  419. display: block;
  420. }
  421. }
  422. #static-election .election-result-list .election-result-list--header-left {
  423. display: flex;
  424. flex-direction: column;
  425. align-items: flex-start;
  426. }
  427. @media (min-width: 768px) {
  428. #static-election .election-result-list .election-result-list--header-left {
  429. margin-right: 20px;
  430. }
  431. }
  432. @media (max-width: 767px) {
  433. #static-election .election-result-list .election-result-list-badge {
  434. display: flex;
  435. justify-content: flex-end;
  436. }
  437. }
  438. #static-election .election-result-list .election-result-list--inner {
  439. grid-gap: 30px;
  440. display: flex;
  441. flex-wrap: wrap;
  442. justify-content: flex-start;
  443. padding: 20px 0 40px 0;
  444. }