style.css 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527
  1. @font-face {
  2. font-family: Universalis ADF Std, sans-serif;
  3. src: url('asset/fonts/UniversalisADFStd-Regular.otf') format('otf'),
  4. url('asset/fonts/UniversalisADFStd-Regular.woff') format('woff');
  5. font-family: Millimetre, sans-serif;
  6. src: url('asset/fonts/Millimetre-Bold.otf') format('otf'),
  7. url('asset/fonts/Millimetre-Regular.otf') format('otf');
  8. }
  9. *{
  10. -webkit-box-sizing: border-box;
  11. box-sizing: border-box;
  12. }
  13. html{
  14. overflow-x: hidden;
  15. }
  16. /*START PARALAX*/
  17. .paralax{
  18. z-index: -1;
  19. position: absolute!important;
  20. width: 50%;
  21. }
  22. #section_proch .paralax{
  23. left: -20%;
  24. }
  25. .section_accueil .paralax{
  26. /* left: 50%; */
  27. }
  28. #section_projets .paralax{
  29. left: 50%;
  30. }
  31. #section_asso .paralax{
  32. left: 30%;
  33. }
  34. .agenda .paralax{
  35. z-index: -1;
  36. position: absolute;
  37. top:0;
  38. width: 50%;
  39. }
  40. .les-projets .paralax{
  41. z-index: -1;
  42. }
  43. .la-collecte .paralax{
  44. z-index: -1;
  45. width: 50%;
  46. top: 0;
  47. }
  48. .la-benevole-zone .paralax{
  49. z-index: -1;
  50. width: 50%;
  51. top: 0;
  52. }
  53. .privatiser-lespace .paralax{
  54. z-index: -1;
  55. width: 30%;
  56. top: 0;
  57. }
  58. .privacy-policy .paralax{
  59. z-index: -1;
  60. width: 70%;
  61. top: 0;
  62. }
  63. /*END PARALAX*/
  64. body {
  65. font-size: 16px;
  66. font-family: Universalis ADF Std, sans-serif;
  67. padding: 0!important;
  68. }
  69. h1, h2, h3, h5{
  70. font-family: Millimetre, sans-serif;
  71. }
  72. h1, h5, h6{
  73. text-transform: uppercase;
  74. }
  75. img{
  76. width: 100%;
  77. height: 100%;
  78. }
  79. ul{
  80. padding:0;
  81. }
  82. li ,ul ,ol {
  83. list-style-type:none;
  84. }
  85. a, a:hover{
  86. color: black;
  87. text-decoration: none;
  88. }
  89. /* START HEADER */
  90. header{
  91. width: 100%;
  92. position: fixed;
  93. z-index: 999;
  94. top: 0;
  95. left: 0;
  96. pointer-events: none;
  97. }
  98. header > .nav-wrapper{
  99. height: -webkit-fit-content;
  100. height: -moz-fit-content;
  101. height: fit-content;
  102. }
  103. /* START LOGO */
  104. .logoLamine {
  105. width : 150px;
  106. height: 150px;
  107. pointer-events: auto;
  108. }
  109. .logoLamine a{
  110. display: block;
  111. width: 100%;
  112. height: 100%;
  113. }
  114. .logoLamine img{
  115. -o-object-fit: cover;
  116. object-fit: cover;
  117. }
  118. #lumiR_logo {
  119. z-index: 1;
  120. position: absolute;
  121. left: 68px;
  122. top: 60px;
  123. width: 68px;
  124. height: 68px;
  125. background-color: #ffcc00ff;
  126. border-radius: 68px;
  127. opacity: 0.3;
  128. }
  129. .accueil #lumiR_logo, .agenda #lumiR_logo, .association #lumiR_logo, .privacy-policy #lumiR_logo{
  130. background-color: #ffcc00ff;
  131. }
  132. .les-projets #lumiR_logo {
  133. background-color: #ff0000ff;
  134. }
  135. .les-temps-forts #lumiR_logo {
  136. background-color: #009ee0ff;
  137. }
  138. .la-collecte #lumiR_logo {
  139. background-color: #ff56ffff;
  140. }
  141. .la-benevole-zone #lumiR_logo {
  142. background-color: #5353e1ff;
  143. }
  144. .privatiser-lespace #lumiR_logo {
  145. background-color: #26e800ff;
  146. }
  147. #fond_logo{
  148. z-index: -1;
  149. position: absolute;
  150. left: -25px;
  151. top: -25px;
  152. width: 200px;
  153. height: 200px;
  154. background-color: white;
  155. border-radius: 200px;
  156. -webkit-transform: scale(1);
  157. -ms-transform: scale(1);
  158. transform: scale(1);
  159. -webkit-transition: all 0.3s ease;
  160. -o-transition: all 0.3s ease;
  161. transition: all 0.3s ease;
  162. }
  163. .logoLamine:hover #fond_logo{
  164. -webkit-transform: scale(1.1);
  165. -ms-transform: scale(1.1);
  166. transform: scale(1.1);
  167. -webkit-transition: all 0.3s ease;
  168. -o-transition: all 0.3s ease;
  169. transition: all 0.3s ease;
  170. }
  171. /* END LOGO */
  172. /* START RS */
  173. .rs{
  174. /* padding-top: 10px; */
  175. height: -webkit-fit-content;
  176. height: -moz-fit-content;
  177. height: fit-content;
  178. pointer-events: auto;
  179. }
  180. .rs > div {
  181. width: 30px;
  182. height: 30px;
  183. -o-object-fit: cover;
  184. object-fit: cover;
  185. margin-right: 15px;
  186. }
  187. /* END RS */
  188. /* START NAV */
  189. /* END NAV */
  190. /* START BURGER */
  191. .burger{
  192. height: -webkit-fit-content;
  193. height: -moz-fit-content;
  194. height: fit-content;
  195. pointer-events: auto;
  196. }
  197. .fond_burger{
  198. background-image: url('../images/form_burger.svg');
  199. background-position: center; /* Center the image */
  200. background-repeat: no-repeat; /* Do not repeat the image */
  201. background-size: contain;
  202. }
  203. #nav-main{
  204. display: none;
  205. position: fixed;
  206. top: 70px;
  207. right: 1rem;
  208. width: calc(100% / 4);
  209. max-width : 200px;
  210. background: white;
  211. z-index: -1;
  212. border: 4px solid black;
  213. }
  214. @media screen and (max-width: 576px) {
  215. #nav-main{
  216. width: 100%;
  217. max-width : 100%;
  218. right: 0;
  219. top: 0;
  220. height: 100vh;
  221. border: none;
  222. }
  223. .nav-main > ul > li{
  224. border-bottom: 4px solid black;
  225. }
  226. .nav-main > ul > li:first-child{
  227. border-top: 4px solid black;
  228. }
  229. }
  230. #nav-main.is-active{
  231. display: -webkit-box;
  232. display: -ms-flexbox;
  233. display: flex;
  234. pointer-events: auto;
  235. -webkit-box-align: center;
  236. -ms-flex-align: center;
  237. align-items: center;
  238. }
  239. .nav-main > ul{
  240. width: 100%;
  241. display: -webkit-box;
  242. display: -ms-flexbox;
  243. display: flex;
  244. -webkit-box-pack: center;
  245. -ms-flex-pack: center;
  246. justify-content: center;
  247. -webkit-box-orient: vertical;
  248. -webkit-box-direction: normal;
  249. -ms-flex-direction: column;
  250. flex-direction: column;
  251. margin-bottom: 0rem;
  252. }
  253. .nav-main > ul > li{
  254. text-align: center;
  255. }
  256. .nav-main > ul > li a{
  257. background: white;
  258. color: black;
  259. -webkit-transition: all 0.3s ease;
  260. -o-transition: all 0.3s ease;
  261. transition: all 0.3s ease;
  262. }
  263. .nav-main > ul > li a:hover{
  264. background: black;
  265. color: white;
  266. -webkit-transition: all 0.3s ease;
  267. -o-transition: all 0.3s ease;
  268. transition: all 0.3s ease;
  269. }
  270. .nav-main > ul > li:not(:last-child){
  271. border-bottom: 4px solid black;
  272. }
  273. #fl_menu{
  274. position:absolute;
  275. z-index: 9999;
  276. width: 30px;
  277. height: auto;
  278. right: 0;
  279. }
  280. .menu-item {
  281. font-family: Millimetre, sans-serif;
  282. text-transform: uppercase;
  283. text-align: center;
  284. pointer-events: auto;
  285. }
  286. .menu-item a {
  287. width: 100%;
  288. display: block;
  289. padding: 1rem;
  290. }
  291. #nav-main > ul > li > ul{
  292. display: none;
  293. text-transform: lowercase;
  294. border-bottom: none;
  295. }
  296. #nav-main > ul > li > a:hover > ul {
  297. display: block;
  298. }
  299. #nav-main > ul > .menu-item{
  300. /* border: 4px solid black; */
  301. }
  302. #nav-main > ul > li:first-child > a::after{
  303. content: "";
  304. background-image: url('../images/fleche_menu.svg');
  305. background-repeat: no-repeat;
  306. background-position: center;
  307. display: inline-block;
  308. width: 20px;
  309. height: 15px;
  310. margin-left: 10px;
  311. }
  312. #nav-main > ul > li:first-child:hover > ul {
  313. display: block;
  314. }
  315. /* END BURGER */
  316. /* END HEADER */
  317. /* START BODY */
  318. body > .content-wrapper{
  319. margin-top: 200px;
  320. }
  321. /* END BODY */
  322. /* START BUTTON */
  323. .section_accueil .redirection_page{
  324. margin: 10px auto;
  325. padding: 3px 10px;
  326. }
  327. .section_accueil .tout_voir{
  328. margin: 30px auto;
  329. padding: 3px 10px;
  330. }
  331. .btn, #bouton_asso, #bouton_contact {
  332. display: block;
  333. cursor: default!important;
  334. margin: auto;
  335. }
  336. #bouton_contact {
  337. margin-top: 20px;
  338. }
  339. .btn a,
  340. #bouton_asso a,
  341. #bouton_contact a{
  342. display: block;
  343. width: -webkit-max-content;
  344. width: -moz-max-content;
  345. width: max-content;
  346. margin: auto;
  347. -webkit-transform: scale(1) rotate(0deg);
  348. -ms-transform: scale(1) rotate(0deg);
  349. transform: scale(1) rotate(0deg);
  350. -webkit-transition: -webkit-transform 0.3s ease;
  351. transition: -webkit-transform 0.3s ease;
  352. -o-transition: transform 0.3s ease;
  353. transition: transform 0.3s ease;
  354. transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  355. }
  356. .btn a:hover,
  357. #bouton_asso a:hover,
  358. #bouton_contact a:hover{
  359. -webkit-transform: scale(1.05) rotate(-5deg);
  360. -ms-transform: scale(1.05) rotate(-5deg);
  361. transform: scale(1.05) rotate(-5deg);
  362. -webkit-transition: all 0.3s ease;
  363. -o-transition: all 0.3s ease;
  364. transition: all 0.3s ease;
  365. }
  366. .btn a{
  367. padding: 7px 10px;
  368. background-color: white;
  369. border: 4px solid black;
  370. }
  371. .add_asso{
  372. display: block;
  373. cursor: default!important;
  374. margin: 30px auto 30px auto;;
  375. }
  376. .add_asso a {
  377. padding: 7px 10px;
  378. background-color: white;
  379. border: 4px solid black;
  380. font-weight: bold;
  381. }
  382. .add_asso a:hover {
  383. color: white;
  384. background-color: black;
  385. }
  386. .flickity-button {
  387. background: transparent;
  388. }
  389. .flickity-prev-next-button {
  390. width: 100px;
  391. height: 100px;
  392. }
  393. .flickity-button-icon {
  394. fill: white;
  395. }
  396. .flickity-button-icon:hover {
  397. fill: black;
  398. }
  399. .flickity-prev-next-button:hover {
  400. background: transparent;
  401. }
  402. footer .flickity-prev-next-button:disabled {
  403. display: none;
  404. }
  405. footer .flickity-prev-next-button{
  406. width: 50px;
  407. height: 50px;
  408. }
  409. /* END BUTTON */
  410. /* START PAGE HOME */
  411. .section_accueil {
  412. position: relative;
  413. padding: 100px 0;
  414. }
  415. .section_accueil .titre{
  416. white-space: nowrap;
  417. }
  418. .section_accueil#section_proch .titre{
  419. border-color: #ffcc00ff;
  420. }
  421. .section_accueil#section_asso .titre,
  422. .section_accueil#section_asso .content_asso {
  423. border-color: #ffcc00ff;
  424. }
  425. .section_accueil#section_projets .titre,
  426. .section_accueil#section_projets .wrap_content {
  427. border-color: #f51212ff;
  428. background-color: white;
  429. }
  430. .section_accueil#section_projets .wrapper__content h3{
  431. color: #f51212ff;
  432. }
  433. .section_accueil#section_projets .wrap_content{
  434. height: calc(100% - 80px);
  435. }
  436. /*ajout chloe drag*/
  437. .group_drag {
  438. z-index: 9999;
  439. width: 200px;
  440. height: auto;
  441. cursor: -webkit-grab;
  442. cursor: grab;
  443. }
  444. .ui-draggable-dragging{
  445. cursor: -webkit-grabbing;
  446. cursor: grabbing;
  447. }
  448. #drag_1 {
  449. position:absolute;
  450. top:175px;
  451. left: 645px;
  452. }
  453. #drag_2 {
  454. position:absolute;
  455. top: 265px;
  456. left: 318px;
  457. }
  458. #drag_3 {
  459. position:absolute;
  460. top:630px;
  461. left: 790px;
  462. }
  463. #drag_4 {
  464. position:absolute;
  465. top:385px;
  466. left: 616px;
  467. }
  468. #drag_5 {
  469. position:absolute;
  470. top:255px;
  471. left: 981px;
  472. }
  473. #drag_6 {
  474. position:absolute;
  475. top:280px;
  476. left: -69px;
  477. }
  478. #drag_7 {
  479. position:absolute;
  480. top:555px;
  481. left: 340px;
  482. }
  483. #drag_8 {
  484. position:absolute;
  485. top:420px;
  486. left: 945px;
  487. }
  488. #drag_9 {
  489. position:absolute;
  490. top:515px;
  491. left: 40px;
  492. }
  493. @media screen and (max-width: 576px) {
  494. .group_drag{
  495. display: none;
  496. }
  497. }
  498. /*fin ajout chloe drag*/
  499. .section_accueil#section_tpsF .titre,
  500. .section_accueil#section_tpsF .content_asso {
  501. border-color: #009ee0ff;
  502. }
  503. .section_accueil#section_tpsF .wrapper__content h3{
  504. color: #009ee0ff;
  505. }
  506. .section_accueil#section_tpsF .colonne_section{
  507. margin-bottom: 50px;
  508. }
  509. .section_accueil#section_tpsF ._content_tpsF{
  510. min-height: 280px;
  511. }
  512. .section_accueil#section_MineVideo .titre {
  513. border-color: #009ee0ff;
  514. }
  515. /* END PAGE HOME */
  516. /* START PAGE AGENDA */
  517. .agenda .titre_page {
  518. border-color: #ffcc00ff;
  519. }
  520. .agenda .cat-list{
  521. padding: 20px 0 50px 0;
  522. }
  523. .agenda .btn_archive,
  524. .archive .btn_archive{
  525. justify-content: flex-end;
  526. }
  527. .agenda .btn_archive li,
  528. .archive .btn_archive li{
  529. margin-bottom: 0!important;
  530. }
  531. .agenda .cat-list li,
  532. .agenda .btn_archive li,
  533. .archive .cat-list li,
  534. .archive .btn_archive li{
  535. cursor: pointer;
  536. margin: 0 10px 20px 10px;
  537. padding: 2px 8px;
  538. border: 4px solid black;
  539. background-color: white;
  540. height: 40px;
  541. display: -webkit-box;
  542. display: -ms-flexbox;
  543. display: flex;
  544. -webkit-box-align: end;
  545. -ms-flex-align: end;
  546. align-items: flex-end;
  547. -webkit-transition: all 0.2s ease;
  548. -o-transition: all 0.2s ease;
  549. transition: all 0.2s ease;
  550. }
  551. .agenda .cat-list li:hover,
  552. .archive .cat-list li:hover,
  553. .agenda .btn_archive li:hover,
  554. .archive .btn_archive li:hover{
  555. background: black;
  556. color: white;
  557. -webkit-transition: all 0.2s ease;
  558. -o-transition: all 0.2s ease;
  559. transition: all 0.2s ease;
  560. }
  561. .agenda .btn_archive li:hover a,
  562. .archive .btn_archive li:hover a{
  563. color: white;
  564. }
  565. .cat-list,
  566. .btn_archive {
  567. text-transform: uppercase;
  568. font-weight: bold;
  569. margin-top: 10px;
  570. }
  571. /* START END AGENDA */
  572. /* START PAGE SINGLE */
  573. .fleche {
  574. position: relative;
  575. left:-50px;
  576. top:-10px;
  577. background-image: url('../images/fleche.svg');
  578. width: 50px;
  579. height: 50px;
  580. background-size: contain;
  581. }
  582. article .header{
  583. margin-bottom: 40px;
  584. }
  585. article .titre_event{
  586. text-transform: uppercase;
  587. font-weight: bold;
  588. text-align: center;
  589. background-color: white;
  590. border: 8px solid #ffcc00ff;
  591. padding: 0.5rem 0 0.2rem 0;
  592. margin: 0!important;
  593. }
  594. .article-content .cat{
  595. text-transform: uppercase;
  596. font-weight: bold;
  597. }
  598. .article-content .data{
  599. background-color: white;
  600. border: 4px solid #ffcc00ff;
  601. padding: 1em;
  602. text-transform: uppercase;
  603. font-weight: bold;
  604. color: #ffcc00ff;
  605. }
  606. .article-content .inscription,
  607. .article-content .partager,
  608. .article-content .tarif{
  609. margin-top: 40px;
  610. }
  611. .article-content h3:not(.titre_event) {
  612. color: #ffcc00ff;
  613. margin-bottom: 0;
  614. }
  615. .article-content .texte_details{
  616. margin: 0;
  617. }
  618. .article-content .voir_event{
  619. font-weight: bold;
  620. }
  621. .article-content .partager a{
  622. display: block;
  623. width: 20px;
  624. height: 20px;
  625. margin-right: 5px;
  626. }
  627. article .__img_event{
  628. max-height: 500px;
  629. }
  630. @media screen and (max-width: 576px) {
  631. article .__img_event{
  632. max-height: 300px;
  633. }
  634. }
  635. article .__img_event img{
  636. position:relative;
  637. top: 0;
  638. width:100%;
  639. height:100%;
  640. -o-object-fit:cover;
  641. object-fit:cover;
  642. }
  643. .other{
  644. margin-top: 200px;
  645. position: relative;
  646. }
  647. .other .header_other{
  648. position: absolute;
  649. top: 0;
  650. -webkit-transform: translate(-50% ,-150%);
  651. -ms-transform: translate(-50% ,-150%);
  652. transform: translate(-50% ,-150%);
  653. left: 0;
  654. }
  655. .voir_aussi {
  656. text-transform: uppercase;
  657. font-weight: bold;
  658. background-color: white;
  659. border: 8px solid #ffcc00ff;
  660. -webkit-transform: rotate(-10deg);
  661. -ms-transform: rotate(-10deg);
  662. transform: rotate(-10deg);
  663. padding: 0.5rem;
  664. }
  665. .cat p{
  666. margin:0;
  667. }
  668. .wrapper__content {
  669. margin-top: 20px;
  670. }
  671. /* END PAGE SINGLE */
  672. /* START PAGE LA COLLECTE */
  673. body.la-collecte .titre_page {
  674. border-color: #ff56ffff;
  675. }
  676. body.la-collecte .__header h3{
  677. color: #ff56ffff;
  678. }
  679. .sider_left_form .acf-field .acf-label label{
  680. display: none!important;
  681. }
  682. .sider_left_form .acf-fields > .acf-field{
  683. border-top: 0;
  684. }
  685. .sider_left_form input{
  686. border: 0px;
  687. border-bottom: 1px solid black;
  688. }
  689. .sider_left_form{
  690. padding: 0 1rem;
  691. border: 8px solid #ff56ffff;
  692. background-color: white;
  693. }
  694. .sider_left_form .acf-form-submit{
  695. padding-top: 0;
  696. }
  697. .sider_left_form .af-submit-button{
  698. margin: 0 auto;
  699. }
  700. .sidebar_left .__content,
  701. .content_zone {
  702. border: 8px solid blue;
  703. background-color: white;
  704. padding: 1em;
  705. }
  706. /* END PAGE LA COLLECTE */
  707. /* START PAGE BENEVOLE */
  708. body.la-benevole-zone .titre_page {
  709. border-color: #5353e1ff;
  710. }
  711. body.la-benevole-zone .__header h3{
  712. color: #5353e1ff;
  713. }
  714. body.la-benevole-zone .__content {
  715. border-color: #5353e1ff;
  716. }
  717. .la-benevole-zone .__bouttons{
  718. text-align: center;
  719. width: -webkit-max-content;
  720. width: -moz-max-content;
  721. width: max-content;
  722. margin: 30px auto 0 auto;
  723. }
  724. .la-benevole-zone .__bouttons > div{
  725. border: 4px solid #5353e1ff;
  726. background-color: white;
  727. margin: 10px auto;
  728. padding: 0 10px;
  729. font-weight: bold;
  730. }
  731. /* END PAGE BENEVOLE */
  732. /* START PAGE projets */
  733. body.les-projets .titre_page {
  734. border-color: #ff0000ff;
  735. }
  736. body.les-projets .header h3{
  737. color: #ff0000ff;
  738. }
  739. body.les-projets .content_zone {
  740. border-color: #ff0000ff;
  741. }
  742. body.les-projets .title {
  743. color: #ff0000ff;
  744. }
  745. body.les-projets section#content .wrapper section{
  746. margin: 100px auto;
  747. }
  748. .projet .img {
  749. margin: 30px 0;
  750. }
  751. ._pjt{
  752. margin-top: 8%;
  753. /* RETIRE LES % */
  754. }
  755. /* END PAGE projets */
  756. /* START PAGE ASSOCIATION */
  757. body.association .titre_page {
  758. border-color: #ffcc00ff;
  759. }
  760. body.association .__header h3{
  761. color: #ffcc00ff;
  762. }
  763. body.association .__content {
  764. border-color: #ffcc00ff;
  765. }
  766. .association .__bouttons{
  767. text-align: center;
  768. width: -webkit-max-content;
  769. width: -moz-max-content;
  770. width: max-content;
  771. margin: 30px auto 0 auto;
  772. }
  773. .association .__bouttons > div{
  774. border: 4px solid #ffcc00ff;
  775. background-color: white;
  776. margin: 10px auto;
  777. padding: 0 10px;
  778. font-weight: bold;
  779. }
  780. .tableau_engagements{
  781. margin-top: 100px;
  782. }
  783. .tableau_engagements > div:not(.gutter-sizer) {
  784. margin-bottom: 10px;
  785. border: 4px solid #ffcc00ff;
  786. background-color: white;
  787. padding: 10px;
  788. width: calc(50% - 10px)!important;
  789. }
  790. .gutter-sizer {
  791. width: 10px;
  792. }
  793. @media screen and (max-width: 576px) {
  794. .tableau_engagements > div:not(.gutter-sizer) {
  795. width: calc(100% - 40px)!important;
  796. margin: 0 20px 20px 20px;
  797. }
  798. }
  799. /* END PAGE ASSOCIATION */
  800. /* START PAGE privatiser-lespace */
  801. body.privatiser-lespace .titre_page {
  802. border-color: #26e800ff;
  803. }
  804. body.privatiser-lespace .__header h3{
  805. color: #26e800ff;
  806. }
  807. .legendes{
  808. background-color: white;
  809. position : absolute;
  810. bottom: 20px;
  811. margin-left: 20px;
  812. border: 8px solid #26e800ff;
  813. padding: 10px;
  814. }
  815. .privatiser.__slide .img{
  816. height: 100%;
  817. }
  818. .privatiser.__slide .legendes{
  819. opacity: 0;
  820. -webkit-transform: translateX(50px);
  821. -ms-transform: translateX(50px);
  822. transform: translateX(50px);
  823. -webkit-transition: all 0.3s;
  824. -o-transition: all 0.3s;
  825. transition: all 0.3s;
  826. }
  827. .privatiser.__slide .is-selected .legendes{
  828. opacity: 1;
  829. -webkit-transform: translateX(0px);
  830. -ms-transform: translateX(0px);
  831. transform: translateX(0px);
  832. -webkit-transition: all 1.3s;
  833. -o-transition: all 1.3s;
  834. transition: all 1.3s;
  835. }
  836. .privatiser-lespace .__organisation,
  837. .privatiser-lespace .__organisation .orga{
  838. margin: 40px 0;
  839. }
  840. .privatiser-lespace .__organisation .title{
  841. color: #26e800ff
  842. }
  843. .privatiser-lespace .__organisation .__item{
  844. border: 8px solid #26e800ff;
  845. background-color: white;
  846. padding: 10px;
  847. }
  848. /* END PAGE privatiser-lespace */
  849. /*START PRIVACY-POLICY*/
  850. .privacy-policy .article-h1 {
  851. position: absolute;
  852. top: 100px;
  853. left: 150px;
  854. text-transform: uppercase;
  855. font-weight: bold;
  856. text-align: center;
  857. -webkit-box-align: center;
  858. -ms-flex-align: center;
  859. align-items: center;
  860. border: 8px solid #00FFFF;
  861. -webkit-transform: rotate(-10deg);
  862. -ms-transform: rotate(-10deg);
  863. transform: rotate(-10deg);
  864. padding: 0.5rem;
  865. background-color: white;
  866. }
  867. .privacy-policy h2, .privacy-policy h3{
  868. font-family: Universalis ADF Std, sans-serif;
  869. color: black!important;
  870. font-size: 1em;
  871. text-transform: uppercase;
  872. font-weight: bold;
  873. }
  874. .privacy-policy .content-wrapper {
  875. margin-top: 300px;
  876. }
  877. .privacy-policy .article-body {
  878. -webkit-column-count: 2;
  879. -moz-column-count: 2;
  880. column-count: 2;
  881. }
  882. /*END PRIVACY-POLICY*/
  883. .titre_page, .titre{
  884. position: absolute;
  885. top: -100px;
  886. left: -70px;
  887. text-transform: uppercase;
  888. font-weight: bold;
  889. text-align: center;
  890. -webkit-box-align: center;
  891. -ms-flex-align: center;
  892. align-items: center;
  893. border: 8px solid blue;
  894. background-color: white;
  895. -webkit-transform: rotate(-10deg);
  896. -ms-transform: rotate(-10deg);
  897. transform: rotate(-10deg);
  898. padding: 0.5rem;
  899. background-color: white;
  900. }
  901. .titre_1{
  902. margin-top:1em;
  903. }
  904. .next_edition{
  905. font-style: italic;
  906. text-align: center;
  907. color:#009ee0ff;
  908. text-transform: uppercase;
  909. }
  910. .title {
  911. text-align: center;
  912. text-transform: uppercase;
  913. }
  914. /*start sections page accueil*/
  915. /* START KEVIN */
  916. /*START SECTION PROCHAINEMENT*/
  917. .coming_soon{
  918. width: 100%;
  919. }
  920. /* ALL thumbnails */
  921. .thumbnails .__img{
  922. height: 300px;
  923. }
  924. .thumbnails .__img img{
  925. width: 100%;
  926. height: 100%;
  927. -o-object-fit: cover;
  928. object-fit: cover;
  929. }
  930. .thumbnails .icone_cat{
  931. width: 40px;
  932. height: 40px;
  933. border-radius: 40px;
  934. position: absolute;
  935. -webkit-transform: translate(-50%, -50%);
  936. -ms-transform: translate(-50%, -50%);
  937. transform: translate(-50%, -50%);
  938. background-position: center; /* Center the image */
  939. background-repeat: no-repeat; /* Do not repeat the image */
  940. background-size: cover; /* Resize the background image to cover the entire container */
  941. background-color: black;
  942. }
  943. .thumbnails .atelier{
  944. background-image: url("../images/picto_ateliers.svg");
  945. }
  946. .thumbnails .autres{
  947. background-image: url("../images/picto_autres.svg");
  948. }
  949. .thumbnails .non_programmation{
  950. background-image: url("../images/picto_nonprog.svg");
  951. }
  952. .thumbnails .la_mine_numerique{
  953. background-image: url("../images/picto_num.svg");
  954. }
  955. .thumbnails .musiques{
  956. background-image: url("../images/picto_musique.svg");
  957. }
  958. .thumbnails .zero_dechets{
  959. background-image: url("../images/picto_zero.svg");
  960. }
  961. /* END SECTION PROCHAINEMENT */
  962. /* SECTION ASSO */
  963. #section_asso .association .__body{
  964. position: relative;
  965. -webkit-box-pack: end;
  966. -ms-flex-pack: end;
  967. justify-content: flex-end;
  968. margin-top: 50px;
  969. }
  970. .image_sectionasso {
  971. position: absolute;
  972. top: 0;
  973. left: 0;
  974. margin-top: 100px;
  975. width: 70%;
  976. }
  977. .content_asso {
  978. width: 70%;
  979. position: relative;
  980. padding: 20px 10px;
  981. background-color: white;
  982. border: 8px solid yellow;
  983. }
  984. /* START SECTION PROJETS*/
  985. #section_projets{
  986. margin-top: 300px;
  987. }
  988. .title_pjt{
  989. color: #f51212ff;
  990. font-weight: bold;
  991. }
  992. /*END SECTION PROJETS*/
  993. /* responsive iframe */
  994. #section_MineVideo .wrapper__content {
  995. position: relative;
  996. padding-bottom: 56.25%; /* 16:9 */
  997. height: 0;
  998. }
  999. .slide .video{
  1000. position: relative;
  1001. width: 100%;
  1002. padding-bottom: 50%;
  1003. padding-top: 35px;
  1004. height: 100%;
  1005. overflow: hidden;
  1006. }
  1007. .slide .video iframe{
  1008. position: absolute;
  1009. top: 0;
  1010. left: 0;
  1011. width: 100%;
  1012. height: 100%;
  1013. }
  1014. #section_MineVideo .wrapper__content iframe{
  1015. position: absolute;
  1016. top: 0;
  1017. left: 0;
  1018. width: 100%;
  1019. height: 100%;
  1020. }
  1021. /* END KEVIN */
  1022. /* .item {
  1023. margin-top: 50px;
  1024. } */
  1025. .wrap__content_proch {
  1026. position: relative;
  1027. width: calc(100% - 40px);
  1028. margin: -4rem auto 0 auto;
  1029. padding: 10px;
  1030. min-height: 160px;
  1031. -webkit-box-align: center;
  1032. -ms-flex-align: center;
  1033. align-items: center;
  1034. text-align: center;
  1035. background-color: white;
  1036. border: 4px solid black;
  1037. display: -webkit-box;
  1038. display: -ms-flexbox;
  1039. display: flex;
  1040. -webkit-box-orient: vertical;
  1041. -webkit-box-direction: normal;
  1042. -ms-flex-direction: column;
  1043. flex-direction: column;
  1044. -webkit-box-pack: center;
  1045. -ms-flex-pack: center;
  1046. justify-content: center;
  1047. }
  1048. .colonne_section{
  1049. margin-top: 10px;
  1050. }
  1051. .colonne_section .wrap_content {
  1052. border: 8px solid blue;
  1053. padding: 1em;
  1054. }
  1055. .colonne_section h3 {
  1056. color: blue;
  1057. text-transform: uppercase;
  1058. text-align: center;
  1059. }
  1060. .projet .colonne_section .header{
  1061. height: 80px;
  1062. display: -webkit-box;
  1063. display: -ms-flexbox;
  1064. display: flex;
  1065. -webkit-box-align: end;
  1066. -ms-flex-align: end;
  1067. align-items: flex-end ;
  1068. }
  1069. .projet .colonne_section .header h3{
  1070. text-align: center;
  1071. width: 100%;
  1072. }
  1073. .item img{
  1074. width: 100%;
  1075. height: 100%;
  1076. -o-object-fit: cover;
  1077. object-fit: cover;
  1078. }
  1079. ._content_tpsF {
  1080. position: relative;
  1081. width: 80%;
  1082. padding: 10px;
  1083. margin: -50px auto;
  1084. -webkit-box-align: center;
  1085. -ms-flex-align: center;
  1086. align-items: center;
  1087. text-align: center;
  1088. background-color: white;
  1089. border: 4px solid black;
  1090. }
  1091. /*fin sections page accueil*/
  1092. /*page collecte avec formulaire*/
  1093. /*trouver comment styliser les champs du formulaire*/
  1094. .af-submit-button{
  1095. position: relative;
  1096. margin: 50px auto 10px auto;
  1097. display:-webkit-box;
  1098. display:-ms-flexbox;
  1099. display:flex;
  1100. border: 4px solid black;
  1101. border-radius: 0%;
  1102. text-align: center;
  1103. padding: 5px;
  1104. -webkit-transform: scale(1) rotate(0deg);
  1105. -ms-transform: scale(1) rotate(0deg);
  1106. transform: scale(1) rotate(0deg);
  1107. -webkit-transition: -webkit-transform 0.3s ease;
  1108. transition: -webkit-transform 0.3s ease;
  1109. -o-transition: transform 0.3s ease;
  1110. transition: transform 0.3s ease;
  1111. transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  1112. }
  1113. .af-submit-button:hover{
  1114. -webkit-transform: scale(1.1) rotate(-10deg);
  1115. -ms-transform: scale(1.1) rotate(-10deg);
  1116. transform: scale(1.1) rotate(-10deg);
  1117. -webkit-transition: all 0.3s ease;
  1118. -o-transition: all 0.3s ease;
  1119. transition: all 0.3s ease;
  1120. }
  1121. /*fin collecte et form*/
  1122. /*gestion des dots*/
  1123. .flickity-page-dots {
  1124. bottom: 0px;
  1125. }
  1126. .flickity-page-dots .dot {
  1127. width: 12px;
  1128. height: 12px;
  1129. opacity: 1;
  1130. background: transparent;
  1131. border: 2px solid white;
  1132. }
  1133. .flickity-page-dots .dot.is-selected {
  1134. background: white;
  1135. }
  1136. /* dot home */
  1137. .hero .flickity-page-dots{
  1138. bottom: 30px;
  1139. }
  1140. /*fin gestion des dots*/
  1141. /* START KEVIN */
  1142. .hero{
  1143. width: 100%;
  1144. height: 100vh;
  1145. position: relative;
  1146. }
  1147. .hero .slide{
  1148. width: 100%;
  1149. height: 100vh;
  1150. overflow: hidden;
  1151. }
  1152. .hero .slide .image{
  1153. width: 100%;
  1154. height: 100vh;
  1155. }
  1156. .hero .slide img{
  1157. width: 100%;
  1158. height: 100%;
  1159. -o-object-fit: cover;
  1160. object-fit: cover;
  1161. }
  1162. .hero .__head{
  1163. width: 100%;
  1164. text-align: center;
  1165. position: absolute;
  1166. bottom: 60px;
  1167. color: white;
  1168. }
  1169. .wrapper section > div {
  1170. position: relative;
  1171. }
  1172. .tpsF .img{
  1173. width: 100%;
  1174. height: 400px;
  1175. }
  1176. .tpsF .img img{
  1177. width: 100%;
  1178. height: 100%;
  1179. -o-object-fit: cover;
  1180. object-fit: cover;
  1181. }
  1182. body.les-temps-forts #content section{
  1183. margin-top: 100px;
  1184. }
  1185. body.les-temps-forts .title, body.les-temps-forts .next_edition {
  1186. color: #009ee0ff;
  1187. text-align: left;
  1188. }
  1189. body.les-temps-forts .titre_page {
  1190. border-color: #009ee0ff;
  1191. }
  1192. .projet .img{
  1193. height: 300px;
  1194. }
  1195. .projet .img img{
  1196. width: 100%;
  1197. height: 100%;
  1198. -o-object-fit: cover;
  1199. object-fit: cover;
  1200. }
  1201. .prive .images{
  1202. width: 100%;
  1203. height: 600px;
  1204. }
  1205. .prive .img img{
  1206. width: 100%;
  1207. height: 100%;
  1208. -o-object-fit: cover;
  1209. object-fit: cover;
  1210. }
  1211. /* END KEVIN */
  1212. /*START MEDIA QUERIES*/
  1213. @media screen and (min-width: 200px) and (max-width: 1088px) {
  1214. .titre_page,
  1215. .titre{
  1216. top: -150px;
  1217. left: 50%;
  1218. -webkit-transform: rotate(-10deg) translateX(-50%);
  1219. -ms-transform: rotate(-10deg) translateX(-50%);
  1220. transform: rotate(-10deg) translateX(-50%);
  1221. }
  1222. .privacy-policy .article-h1{
  1223. top: 100px;
  1224. left: 50%;
  1225. -webkit-transform: rotate(-10deg) translateX(-50%);
  1226. -ms-transform: rotate(-10deg) translateX(-50%);
  1227. transform: rotate(-10deg) translateX(-50%);
  1228. }
  1229. .privacy-policy .article-body {
  1230. -webkit-column-count: 1;
  1231. -moz-column-count: 1;
  1232. column-count: 1;
  1233. }
  1234. .other .header_other {
  1235. left: 50%;
  1236. }
  1237. .article-content{
  1238. margin-top: 30px;
  1239. }
  1240. }
  1241. @media only screen and (max-width : 320px) {
  1242. /* Smartphone */
  1243. /*footer*/
  1244. .accueil .collecte, .accueil .adresse, .accueil .horaires {
  1245. display: block;
  1246. }
  1247. .collecte, .horaires {
  1248. display:none;
  1249. }
  1250. /*fin footer*/
  1251. }
  1252. @media screen and (max-width : 768px){
  1253. article .__img_event{
  1254. max-height: 300px;
  1255. }
  1256. }
  1257. @media screen and (min-width: 200px) and (max-width: 640px) {
  1258. .image_sectionasso {
  1259. display: none;
  1260. width: 100%;
  1261. }
  1262. .content_asso {
  1263. width: 100%;
  1264. }
  1265. }
  1266. @media screen and (min-width: 200px) and (max-width: 755px) {
  1267. .__chapeau, .titre_event{
  1268. margin-top: 20px;
  1269. }
  1270. }
  1271. /*END MEDIA QUERIES*/
  1272. /* START FOOTER */
  1273. footer{
  1274. background-color: rgba(240, 240, 240, 240);
  1275. width: 100%;
  1276. padding: 50px 10px;
  1277. margin-top: 100px;
  1278. }
  1279. /* footer .information > div > div{
  1280. margin: 0 20px;
  1281. } */
  1282. footer > section{
  1283. margin-bottom: 20px;
  1284. }
  1285. footer .logo_lamine {
  1286. /* max-width: 150px; */
  1287. height: auto;
  1288. max-height: 150px;
  1289. /* margin: 10px; */
  1290. }
  1291. footer .logo_lamine a{
  1292. display: block;
  1293. height: 100%;
  1294. width: auto;
  1295. }
  1296. footer .logo_lamine img{
  1297. -o-object-fit: contain;
  1298. object-fit: contain;
  1299. }
  1300. footer > .information > div > div {
  1301. margin-bottom: 20px;
  1302. }
  1303. footer .reseaux_sociaux > div a > img{
  1304. display: block;
  1305. width: 20px;
  1306. height: 20px;
  1307. margin-right: 5px;
  1308. }
  1309. footer .reseaux_sociaux img {
  1310. vertical-align: baseline;
  1311. -o-object-fit: contain;
  1312. object-fit: contain;
  1313. }
  1314. /* START Mailchimp */
  1315. footer #mc_embed_signup label, footer #mc-embedded-subscribe{
  1316. padding: 7px 10px;
  1317. background-color: white;
  1318. border: 4px solid black;
  1319. }
  1320. footer .email{
  1321. width: 100%;
  1322. padding: 7px 10px;
  1323. background-color: #D8D8D8;
  1324. border-bottom: 4px solid black;
  1325. border-top: 4px solid black;
  1326. border-left: none;
  1327. border-right: none;
  1328. }
  1329. footer #mc_embed_signup_scroll p {
  1330. margin: 0;
  1331. }
  1332. footer #mc_embed_signup_scroll{
  1333. align-items: baseline;
  1334. background: white;
  1335. }
  1336. footer #mc_embed_signup_scroll label{
  1337. white-space: nowrap;
  1338. font-weight: bold;
  1339. }
  1340. footer #mc_embed_signup_scroll input{
  1341. width: 100%;
  1342. }
  1343. footer #mc-embedded-subscribe:hover{
  1344. color: white;
  1345. background-color: black;
  1346. }
  1347. footer #mc_embed_signup_scroll{
  1348. border: 4px solid black;
  1349. }
  1350. footer #mc_embed_signup_scroll > div > p{
  1351. white-space:nowrap;
  1352. padding: 0 1rem;
  1353. }
  1354. footer #mc_embed_signup_scroll input.email{
  1355. border-left: 4px solid black;
  1356. border-right: 4px solid black;
  1357. border-top: 0;
  1358. border-bottom: 0;
  1359. }
  1360. footer #mc_embed_signup .button{
  1361. border: none;
  1362. border-radius: 0;
  1363. }
  1364. /* END MAILCHIMP */
  1365. /* START SLIDE */
  1366. footer .partenaires ._titre{
  1367. white-space: nowrap;
  1368. font-weight: bold;
  1369. margin: auto 50px auto 0px;
  1370. }
  1371. footer .partenaires{
  1372. width: 100%;
  1373. }
  1374. footer .container_slide li{
  1375. width: 80px;
  1376. height: 80px;
  1377. margin: 0 10px;
  1378. }
  1379. footer .partenaires img{
  1380. -o-object-fit: contain;
  1381. object-fit: contain;
  1382. }
  1383. /* END SLIDE */
  1384. /* END FOOTER */
  1385. @media screen and (max-width: 576px) {
  1386. footer p,
  1387. footer a{
  1388. text-align: center;
  1389. }
  1390. footer a.d-flex{
  1391. -webkit-box-pack: center;
  1392. -ms-flex-pack: center;
  1393. justify-content: center;
  1394. }
  1395. #Btn_asso a{
  1396. display: block;
  1397. }
  1398. .send_actu input{
  1399. text-align: center;
  1400. }
  1401. }