style.css 24 KB

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