theme-green.css 14 KB

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