theme-blue.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903
  1. @charset "UTF-8";
  2. @import url("https://fonts.googleapis.com/css?family=Comfortaa&display=swap");
  3. a {
  4. color: #4facc6;
  5. text-decoration: none;
  6. }
  7. a:hover {
  8. color: #256374;
  9. text-decoration: underline;
  10. }
  11. .ui-datepicker {
  12. z-index: 10000 !important;
  13. }
  14. .alert {
  15. color: #e60000;
  16. font-weight: bold;
  17. }
  18. body {
  19. max-width: 1170px;
  20. margin: auto;
  21. font-family: Liberation Sans, Arial;
  22. font-size: 14px;
  23. }
  24. #header {
  25. align-items: center;
  26. margin-top: 0.4em;
  27. margin-bottom: 1.2em;
  28. }
  29. .main {
  30. /* OLD - iOS 6-, Safari 3.1-6 */
  31. display: -webkit-box;
  32. /* OLD - Firefox 19- (buggy but mostly works) */
  33. display: -moz-box;
  34. /* TWEENER - IE 10 */
  35. display: -ms-flexbox;
  36. /* NEW - Chrome */
  37. display: -webkit-flex;
  38. /* NEW, Spec - Opera 12.1, Firefox 20+ */
  39. display: flex;
  40. flex-direction: row;
  41. }
  42. .leftcol {
  43. width: 15%;
  44. min-width: 185px;
  45. }
  46. .rightcol {
  47. width: 15%;
  48. min-width: 185px;
  49. }
  50. .dropdown {
  51. position: relative;
  52. display: inline-block;
  53. }
  54. ul.dropdown-menu {
  55. display: none;
  56. position: absolute;
  57. z-index: 1;
  58. margin: auto 0;
  59. padding: 0;
  60. list-style: none;
  61. }
  62. ul.dropdown-menu li {
  63. padding: 12px 16px;
  64. }
  65. ul.dropdown-displayed {
  66. display: block;
  67. }
  68. ul.dropdown-right {
  69. top: 0;
  70. left: 100%;
  71. }
  72. ul.dropdown-left {
  73. top: 0;
  74. right: 100%;
  75. }
  76. #topbar {
  77. /* OLD - iOS 6-, Safari 3.1-6 */
  78. display: -webkit-box;
  79. /* OLD - Firefox 19- (buggy but mostly works) */
  80. display: -moz-box;
  81. /* TWEENER - IE 10 */
  82. display: -ms-flexbox;
  83. /* NEW - Chrome */
  84. display: -webkit-flex;
  85. /* NEW, Spec - Opera 12.1, Firefox 20+ */
  86. display: flex;
  87. flex-direction: row;
  88. justify-content: center;
  89. align-items: center;
  90. margin-top: 0.4em;
  91. height: 75px;
  92. list-style: none;
  93. }
  94. .topbar-logo img, .topbar-network-logo img {
  95. max-height: 95%;
  96. }
  97. .topbar-title {
  98. font-family: "Comfortaa", cursive;
  99. margin: 0 0.6em 0 0.6em;
  100. flex: 1;
  101. }
  102. #menu {
  103. /* OLD - iOS 6-, Safari 3.1-6 */
  104. display: -webkit-box;
  105. /* OLD - Firefox 19- (buggy but mostly works) */
  106. display: -moz-box;
  107. /* TWEENER - IE 10 */
  108. display: -ms-flexbox;
  109. /* NEW - Chrome */
  110. display: -webkit-flex;
  111. /* NEW, Spec - Opera 12.1, Firefox 20+ */
  112. display: flex;
  113. flex-direction: row;
  114. list-style: none;
  115. background-color: #4869d6;
  116. height: 50px;
  117. padding: 0;
  118. align-items: center;
  119. }
  120. #menu li {
  121. height: 100%;
  122. }
  123. #menu li a {
  124. color: #ffffff;
  125. font-weight: 600;
  126. height: 100%;
  127. display: flex;
  128. align-items: center;
  129. padding-left: 0.8em;
  130. padding-right: 0.8em;
  131. }
  132. #menu li:hover {
  133. height: 100%;
  134. background-color: #889cdd;
  135. }
  136. #menu li:hover a {
  137. color: #091534;
  138. }
  139. #menu .caret {
  140. margin-left: 5px;
  141. }
  142. #menu .dropdown-menu {
  143. min-width: 180px;
  144. background-color: #ffffff;
  145. box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  146. }
  147. #menu .dropdown-menu li {
  148. width: 100%;
  149. padding: 0;
  150. }
  151. #menu .dropdown-menu a {
  152. color: #262626;
  153. padding: 0.8em;
  154. }
  155. #menu .dropside-menu {
  156. background-color: #f2f2f2;
  157. box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  158. }
  159. .content {
  160. flex: 1;
  161. padding: 0 2em;
  162. min-width: 600px;
  163. }
  164. .content h1, h2, h3, h4, h5, h6 {
  165. font-weight: 500;
  166. line-height: 1.1;
  167. }
  168. .content h1, h2 {
  169. padding: 5px;
  170. color: #091534;
  171. font-size: 1.6em;
  172. font-weight: 700;
  173. }
  174. .content h3 {
  175. font-size: 1.2em;
  176. font-weight: 600;
  177. }
  178. .content h4 {
  179. font-size: 18px;
  180. }
  181. #footer {
  182. margin-top: 40px;
  183. position: relative;
  184. height: 60px;
  185. /*padding: 12px 0;*/
  186. display: flex;
  187. flex-direction: row;
  188. align-items: center;
  189. }
  190. #footer::after {
  191. content: "";
  192. /* empty but necessary */
  193. position: absolute;
  194. background-image: linear-gradient(to bottom, #575757 0, #3d3d3d 100%);
  195. background-repeat: repeat-x;
  196. box-shadow: 0px -2px 10px 0px #656565;
  197. height: 84px;
  198. left: -20vw;
  199. width: 100%;
  200. padding-left: 19.9vw;
  201. padding-right: 19.9vw;
  202. z-index: -1;
  203. margin: 0;
  204. }
  205. .footer-navbar {
  206. flex: 1;
  207. display: flex;
  208. flex-direction: row;
  209. align-items: center;
  210. list-style: none;
  211. }
  212. .footer-navbar a {
  213. color: #ffffff;
  214. text-decoration: none;
  215. font-weight: 700;
  216. margin: 0 14px;
  217. font-size: 14px;
  218. }
  219. .footer-navbar a:hover {
  220. color: #a6a6a6;
  221. }
  222. footer .logo-ot {
  223. margin-right: 20px;
  224. }
  225. .user-toolbar {
  226. color: #666666;
  227. font-size: 16px;
  228. position: relative;
  229. display: inline-block;
  230. }
  231. .user-toolbar-username {
  232. display: flex;
  233. flex-direction: row;
  234. align-items: center;
  235. height: 45px;
  236. max-height: 100%;
  237. }
  238. .user-toolbar .fa {
  239. margin: auto 5px;
  240. }
  241. .user-toolbar a {
  242. text-decoration: none;
  243. color: #666666;
  244. }
  245. .user-toolbar ul {
  246. list-style: none;
  247. }
  248. .user-toolbar .dropdown-menu {
  249. min-width: 240px;
  250. background-color: #ffffff;
  251. box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  252. right: 0;
  253. }
  254. .user-toolbar .dropdown-menu li {
  255. height: 3.5em;
  256. display: flex;
  257. flex-direction: row;
  258. align-items: center;
  259. padding: 0;
  260. }
  261. .user-toolbar .dropdown-menu li:hover {
  262. background-color: #cccccc;
  263. }
  264. .user-toolbar .dropdown-menu a {
  265. width: 100%;
  266. padding: 12px 16px;
  267. }
  268. .user-toolbar .dropside-menu {
  269. background-color: #4869d6;
  270. box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  271. }
  272. #login-popup {
  273. position: relative;
  274. display: inline-block;
  275. cursor: pointer;
  276. }
  277. /* The actual popup */
  278. #login-popup .popup-form {
  279. visibility: hidden;
  280. width: 240px;
  281. background-color: #4869d6;
  282. border-radius: 4px;
  283. padding: 1em 1.6em;
  284. position: absolute;
  285. right: 0;
  286. top: 1em;
  287. z-index: 1;
  288. }
  289. /* Toggle this class when clicking on the popup container (hide and show the popup) */
  290. #login-popup .show {
  291. visibility: visible;
  292. }
  293. #login-popup .popup-form {
  294. display: flex;
  295. flex-direction: column;
  296. justify-content: center;
  297. align-items: center;
  298. }
  299. #login-popup .popup-form > input {
  300. margin: 0.6em;
  301. }
  302. /* Error messages */
  303. .login-errormsg {
  304. text-align: center;
  305. }
  306. .breadcrumb {
  307. list-style: none;
  308. display: flex;
  309. flex-direction: row;
  310. font-weight: bold;
  311. color: #b8b8b9;
  312. }
  313. .breadcrumb li {
  314. margin: 0 3px;
  315. }
  316. .breadcrumb li::before {
  317. /*content: "> ";*/
  318. font-family: "Font Awesome 5 Free";
  319. content: "";
  320. }
  321. .breadcrumb li:first-child::before {
  322. content: "";
  323. }
  324. .breadcrumb > li:last-child {
  325. color: #737373;
  326. }
  327. .slick-track {
  328. max-height: 380px;
  329. overflow: hidden;
  330. }
  331. .slick-slide img {
  332. max-width: initial;
  333. }
  334. .carousel .carousel-img:not(.slick-slide) {
  335. width: 100%;
  336. display: none;
  337. }
  338. .carousel .carousel-img:first-child:not(.slick-slide) {
  339. display: inline;
  340. }
  341. .ot-events {
  342. font-size: 0.8em;
  343. margin: 1em 0;
  344. }
  345. .ot-events header {
  346. background: #889cdd;
  347. padding: 5px;
  348. margin: 1em 0;
  349. }
  350. .ot-events header h3 {
  351. color: #091534;
  352. font-size: 1.2em;
  353. font-weight: 600;
  354. padding: 0;
  355. margin: 0;
  356. }
  357. .ot-events .event-card {
  358. display: flex;
  359. flex-direction: row;
  360. margin-bottom: 0.5em;
  361. }
  362. .ot-events .event-card > .event-poster {
  363. flex: 1;
  364. display: flex;
  365. flex-direction: row;
  366. justify-content: center;
  367. align-items: center;
  368. }
  369. .ot-events .event-card > .event-poster img {
  370. margin: auto;
  371. width: 75%;
  372. height: auto;
  373. }
  374. .ot-events .event-card > .event-summary {
  375. flex: 2;
  376. display: flex;
  377. flex-direction: column;
  378. padding: 0.3em;
  379. }
  380. .ot-events .event-card > .event-summary .event-name {
  381. font-weight: bold;
  382. color: #393939;
  383. }
  384. .ot-events .event-card > .event-summary .event-date {
  385. color: #666;
  386. }
  387. .ot-events .no-events p {
  388. padding: 1em;
  389. }
  390. .ot-events footer {
  391. border-top: solid 1px #4d4d4d;
  392. margin: 0.5em 0;
  393. padding: 0.5em;
  394. font-size: 1.2em;
  395. }
  396. .ot-all-events {
  397. display: flex;
  398. flex-direction: row;
  399. }
  400. .ot-all-events .events-controls {
  401. order: 1;
  402. flex: 1;
  403. }
  404. .ot-all-events .events-results {
  405. order: 0;
  406. flex: 1;
  407. }
  408. .ot-all-events .events-controls, .events-results {
  409. display: flex;
  410. flex-direction: column;
  411. margin: 0 1.5em;
  412. }
  413. .ot-all-events .event-search {
  414. display: flex;
  415. flex-direction: column;
  416. margin-bottom: 2em;
  417. }
  418. .ot-all-events h3 {
  419. color: #091534;
  420. font-size: 1.2em;
  421. font-weight: bold;
  422. }
  423. .ot-all-events .event-search form {
  424. display: flex;
  425. flex-direction: column;
  426. }
  427. .ot-all-events .event-search form input, button {
  428. margin-bottom: 1em;
  429. line-height: 1.4em;
  430. font-size: 1.1em;
  431. border: 1px solid #ccc;
  432. border-radius: 4px;
  433. padding: 6px 12px;
  434. }
  435. .ot-all-events .event-search form button {
  436. border: solid 2px #4facc6;
  437. color: #4facc6;
  438. }
  439. .ot-all-events .event-search form button:hover {
  440. background-color: #d8edf3;
  441. cursor: pointer;
  442. }
  443. .ot-all-events #event-map {
  444. height: 400px;
  445. width: 100%;
  446. align-self: flex-end;
  447. }
  448. .ot-all-events .event {
  449. display: flex;
  450. flex-direction: column;
  451. border-bottom: solid 2px #889cdd;
  452. border-radius: 4px;
  453. height: 200px;
  454. padding: 1em;
  455. justify-content: space-around;
  456. }
  457. .ot-all-events .event-preview {
  458. display: flex;
  459. flex-direction: row;
  460. align-items: center;
  461. }
  462. .ot-all-events .event-preview .event-poster {
  463. flex: 1;
  464. display: flex;
  465. flex-direction: column;
  466. align-items: center;
  467. }
  468. .ot-all-events .event-preview .event-poster img {
  469. width: auto;
  470. max-width: 100%;
  471. min-width: 40%;
  472. height: auto;
  473. margin-right: 4em;
  474. }
  475. .ot-all-events .event-preview .event-summary {
  476. flex: 2;
  477. display: flex;
  478. flex-direction: column;
  479. }
  480. .ot-all-events .event-preview .event-summary > span {
  481. margin-bottom: 0.5em;
  482. }
  483. .ot-all-events .event-preview .event-name {
  484. font-size: 1.4em;
  485. color: #333333;
  486. font-weight: bold;
  487. }
  488. .ot-all-events .event-preview .event-loc-date {
  489. font-size: 1.1em;
  490. color: #4d4d4d;
  491. font-weight: bold;
  492. }
  493. .ot-all-events .event-preview .event-description {
  494. color: #4d4d4d;
  495. }
  496. .ot-all-events .event-see {
  497. align-self: stretch;
  498. padding: 0.4em 0.8em;
  499. font-size: 1.1em;
  500. margin-top: 0.4em;
  501. display: flex;
  502. flex-direction: row;
  503. justify-content: center;
  504. align-items: center;
  505. }
  506. .ot-all-events .event-see:hover {
  507. text-decoration: none;
  508. font-weight: bold;
  509. }
  510. .ot-show-event {
  511. display: flex;
  512. flex-direction: column;
  513. }
  514. .ot-show-event header {
  515. display: flex;
  516. flex-direction: row;
  517. padding: 0.5em;
  518. margin-bottom: 2em;
  519. align-items: center;
  520. }
  521. .ot-show-event .event-name {
  522. font-size: 1.8em;
  523. color: #091534;
  524. font-weight: bold;
  525. flex: 1;
  526. }
  527. .ot-show-event .go-back {
  528. color: #4facc6;
  529. font-weight: bold;
  530. padding: 0.5em 0.7em;
  531. border: solid 2px #4facc6;
  532. border-radius: 6px;
  533. margin: auto;
  534. }
  535. .ot-show-event .go-back:hover {
  536. background-color: #d8edf3;
  537. text-decoration: none;
  538. }
  539. .ot-show-event .event-content {
  540. display: flex;
  541. flex-direction: row;
  542. margin-bottom: 2em;
  543. }
  544. .ot-show-event .event-content .event-poster {
  545. flex: 1;
  546. }
  547. .ot-show-event .event-poster img {
  548. width: auto;
  549. max-width: 100%;
  550. min-width: 40%;
  551. height: auto;
  552. }
  553. .ot-show-event .event-summary {
  554. flex: 1;
  555. display: flex;
  556. flex-direction: column;
  557. }
  558. .ot-show-event .event-description {
  559. margin-bottom: 1em;
  560. padding: 1em 0.5em;
  561. }
  562. .ot-show-event .event-infos {
  563. border: none;
  564. width: 94%;
  565. margin: 0 3%;
  566. padding-top: 1em;
  567. }
  568. .ot-show-event .event-infos tr {
  569. background-color: #ffdd99;
  570. }
  571. .ot-show-event .event-infos tr:nth-child(odd) {
  572. background-color: #ffd480;
  573. }
  574. .ot-show-event .event-content .event-infos td {
  575. padding: 0.8em 1.6em;
  576. }
  577. .ot-show-event .event-content .event-infos tr td:first-child {
  578. font-weight: bold;
  579. color: #2E2D2D;
  580. }
  581. .ot-show-event #event-map {
  582. height: 400px;
  583. width: 100%;
  584. align-self: center;
  585. }
  586. .ot-donors {
  587. font-size: 0.8em;
  588. }
  589. .ot-donors header {
  590. background: #889cdd;
  591. padding: 0.5em;
  592. margin: 1em 0;
  593. }
  594. .ot-donors header h3 {
  595. color: #091534;
  596. font-size: 1.2em;
  597. font-weight: 600;
  598. padding: 0;
  599. margin: 0;
  600. }
  601. .ot-donors .donor-list {
  602. display: flex;
  603. flex-direction: column;
  604. }
  605. .ot-donors .donor-card {
  606. height: 80px;
  607. width: 100%;
  608. display: flex;
  609. flex-direction: row;
  610. align-content: center;
  611. justify-content: center;
  612. margin-bottom: 1em;
  613. }
  614. .ot-donors .donor-card img {
  615. width: auto;
  616. max-height: 100%;
  617. max-width: 95%;
  618. margin: auto;
  619. /* Style the alt text */
  620. font-size: 1.1em;
  621. }
  622. .frame-type-menu_sitemap {
  623. font-size: 16px;
  624. font-weight: bold;
  625. }
  626. .frame-type-menu_sitemap a {
  627. color: #4facc6;
  628. }
  629. .frame-type-menu_sitemap > ul {
  630. padding-left: 1.5em;
  631. list-style: none;
  632. }
  633. .frame-type-menu_sitemap li ul {
  634. list-style: disc;
  635. }
  636. .frame-type-menu_sitemap li ul li ul {
  637. list-style: square;
  638. }
  639. .frame-type-menu_sitemap li {
  640. padding-top: 0.5em;
  641. padding-bottom: 0.5em;
  642. color: #979797;
  643. }
  644. form .row {
  645. display: flex;
  646. flex-direction: row;
  647. }
  648. form .row > div {
  649. padding-left: 2em;
  650. flex: 1;
  651. }
  652. form .row > div:first-child {
  653. padding-left: 0;
  654. }
  655. .form-group {
  656. margin-bottom: 18px;
  657. }
  658. .control-label {
  659. color: #091534;
  660. display: inline-block;
  661. max-width: 100%;
  662. margin-bottom: 10px;
  663. font-weight: 700;
  664. }
  665. div.input {
  666. display: flex;
  667. flex-direction: column;
  668. }
  669. .form-control {
  670. height: 28px;
  671. box-sizing: content-box;
  672. padding: 6px 12px;
  673. font-size: 14px;
  674. line-height: 1.2em;
  675. color: #555;
  676. background-color: #fff;
  677. border: 1px solid #ccc;
  678. border-radius: 4px;
  679. }
  680. textarea.form-control {
  681. padding: 12px 12px;
  682. height: 180px;
  683. }
  684. .form-control:focus {
  685. border: 2px solid #889cdd;
  686. }
  687. .form-control:invalid {
  688. box-shadow: none;
  689. }
  690. div.input .error {
  691. color: #e60000;
  692. }
  693. div.input span.error {
  694. margin-top: 5px;
  695. }
  696. span.submit {
  697. display: flex;
  698. flex-direction: row;
  699. justify-content: flex-end;
  700. }
  701. form button[type=submit] {
  702. width: 120px;
  703. }
  704. form button[type=submit]:hover {
  705. background-color: #e6e6e6;
  706. cursor: pointer;
  707. }
  708. ::-webkit-input-placeholder {
  709. color: #8c8c8c !important;
  710. opacity: 1;
  711. }
  712. :-moz-placeholder {
  713. color: #8c8c8c !important;
  714. opacity: 1;
  715. }
  716. ::-moz-placeholder {
  717. color: #8c8c8c !important;
  718. opacity: 1;
  719. }
  720. :-ms-input-placeholder {
  721. color: #8c8c8c !important;
  722. opacity: 1;
  723. }
  724. .contact-form {
  725. width: 80%;
  726. margin: auto;
  727. min-width: 600px;
  728. }
  729. .contact-form-info {
  730. font-size: 12px;
  731. padding: 0 5px 10px 5px;
  732. font-style: italic;
  733. color: #4d4d4d;
  734. }
  735. .faq-item h3 {
  736. color: #091534;
  737. }
  738. .faq-item .content {
  739. color: #262626;
  740. padding: 0 2em;
  741. margin: 0 0.5em 3em 0.5em;
  742. border-left: solid 2px #889cdd;
  743. }
  744. .fce-2col {
  745. display: flex;
  746. flex-direction: row;
  747. }
  748. .fce-2col .col {
  749. flex: 1;
  750. margin-right: 2em;
  751. }
  752. .fce-2col .col:last-child {
  753. margin-right: 0;
  754. }
  755. /*# sourceMappingURL=theme-blue.css.map */