style.css 30 KB

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