style.css 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  1. @font-face {
  2. font-family: Universalis ADF Std, sans-serif;
  3. src: url('../fonts/UniversalisADFStd.otf') format('otf'),
  4. url('../fonts/UniversalisADFStd.woff') format('woff');
  5. font-family: Millimetre, sans-serif;
  6. src: url('../fonts/Millimetre.otf') format('OpenType'),
  7. url('../fonts/Millimetre.otf') format('otf'),
  8. url('../fonts/Millimetre.woff') format('woff');
  9. }
  10. *{
  11. box-sizing: border-box;
  12. }
  13. body {
  14. width: 300px;
  15. margin: 0 auto;
  16. font-size: 16px;
  17. font-family: Universalis ADF Std, sans-serif;
  18. padding: 0!important;
  19. }
  20. h1, h2, h3, h5{
  21. font-family: Millimetre, sans-serif;
  22. }
  23. h1, h5, h6{
  24. text-transform: uppercase;
  25. }
  26. img{
  27. width: 100%;
  28. height: auto;
  29. }
  30. ul{
  31. padding:0;
  32. }
  33. li {
  34. list-style-type:none;
  35. }
  36. a, a:hover{
  37. color: black;
  38. text-decoration: none;
  39. }
  40. section{
  41. position: relative;
  42. }
  43. /* START KEVIN */
  44. .nav-main{
  45. display: none;
  46. position: absolute;
  47. right: 0;
  48. top: 70px;
  49. background: white;
  50. padding: 30px;
  51. }
  52. .nav-main.is-active{
  53. display: block
  54. }
  55. /* END KEVIN */
  56. .titre_page, .titre {
  57. position: absolute;
  58. top: -100px;
  59. left: -70px;
  60. text-transform: uppercase;
  61. font-weight: bold;
  62. text-align: center;
  63. align-items: center;
  64. border: 8px solid blue;
  65. transform: rotate(-10deg);
  66. padding: 0.5rem;
  67. background-color: white;
  68. }
  69. .titre_1{
  70. margin-top:1em;
  71. }
  72. .next_edition{
  73. font-style: italic;
  74. text-transform: uppercase;
  75. }
  76. .title, .cat {
  77. color: blue;
  78. text-align: center;
  79. text-transform: uppercase;
  80. }
  81. .sidebar_left .__content, .sider_left_form, .__organisation .__item, .content_zone {
  82. border: 8px solid blue;
  83. padding: 1em;
  84. }
  85. .tableau_engagements {
  86. margin-top : 10%;
  87. }
  88. .tableau_engagements div{
  89. margin-top : 5%;
  90. padding-left: 5%;
  91. }
  92. /*sections page accueil*/
  93. /* START KEVIN */
  94. .coming_soon{
  95. width: 100%;
  96. }
  97. .coming_soon .thumbnails, .other-posts .thumbnails{
  98. transform: scale(1);
  99. transition: transform 0.3s ease;
  100. }
  101. .coming_soon .thumbnails:hover, .other-posts .thumbnails:hover{
  102. transform: scale(1.05);
  103. transition: all 0.3s ease;
  104. }
  105. /* ALL thumbnails */
  106. .thumbnails .__img{
  107. height: 300px;
  108. }
  109. .thumbnails .__img img{
  110. width: 100%;
  111. height: 100%;
  112. object-fit: cover;
  113. }
  114. .thumbnails .icone_cat{
  115. width: 50px;
  116. height: 50px;
  117. content: "Picto";
  118. position: absolute;
  119. transform: translate(-50%, -50%);
  120. background: grey;
  121. border-radius: 50px;
  122. }
  123. /* SECTION ASSO */
  124. #section_asso .association .__body{
  125. position: relative;
  126. justify-content: flex-end;
  127. margin-top: 50px;
  128. }
  129. .image_sectionasso {
  130. position: absolute;
  131. top: 0;
  132. left: 0;
  133. margin-top: 100px;
  134. width: 70%;
  135. }
  136. .content_asso {
  137. width: 70%;
  138. position: relative;
  139. padding: 10px;
  140. background-color: white;
  141. border: 8px solid yellow;
  142. }
  143. /* responsive iframe */
  144. #section_MineVideo .wrapper__content {
  145. position: relative;
  146. padding-bottom: 56.25%; /* 16:9 */
  147. height: 0;
  148. }
  149. #section_MineVideo .wrapper__content iframe {
  150. position: absolute;
  151. top: 0;
  152. left: 0;
  153. width: 100%;
  154. height: 100%;
  155. }
  156. /* END KEVIN */
  157. .item {
  158. margin-top: 50px;
  159. }
  160. .wrap__content_proch {
  161. position: relative;
  162. width: calc(100% - 40px);
  163. margin: -4rem auto 0 auto;
  164. padding: 10px;
  165. min-height: 160px;
  166. align-items: center;
  167. text-align: center;
  168. background-color: white;
  169. border: 4px solid black;
  170. display: flex;
  171. flex-direction: column;
  172. justify-content: center;
  173. }
  174. .colonne_section{
  175. margin-top: 4%;
  176. }
  177. .colonne_section .wrap_content {
  178. border: 8px solid blue;
  179. padding: 1em;
  180. }
  181. .colonne_section h3 {
  182. color: blue;
  183. text-transform: uppercase;
  184. text-align: center;
  185. }
  186. /* .image_sectionasso {
  187. position: absolute;
  188. width: 500px;
  189. }
  190. .content_asso {
  191. position: relative;
  192. margin: 150px auto auto 200px;
  193. padding: 10px;
  194. background-color: white;
  195. border: 8px solid yellow;
  196. } */
  197. .projet .colonne_section .header{
  198. height: 80px;
  199. display: flex;
  200. align-items: flex-end ;
  201. }
  202. .projet .colonne_section .header h3{
  203. text-align: center;
  204. width: 100%;
  205. }
  206. .item img{
  207. width: 100%;
  208. height: 100%;
  209. object-fit: cover;
  210. }
  211. ._content_tpsF {
  212. position: relative;
  213. width: 80%;
  214. padding: 10px;
  215. margin: -50px auto -20px auto;
  216. align-items: center;
  217. text-align: center;
  218. background-color: white;
  219. border: 4px solid black;
  220. }
  221. .video iframe {
  222. margin: 40px auto 0 auto;
  223. width:100%;
  224. }
  225. /*fin sections page accueil*/
  226. /*page évent*/
  227. .titre_event {
  228. position: absolute;
  229. top: -450px;
  230. left: 18vw;
  231. text-transform: uppercase;
  232. font-weight: bold;
  233. text-align: center;
  234. align-items: center;
  235. border: 8px solid blue;
  236. transform: rotate(-10deg);
  237. padding: 0.5rem;
  238. background-color: white;
  239. }
  240. .voir_aussi {
  241. position: absolute;
  242. top: 1300px;
  243. left: -50px;
  244. text-transform: uppercase;
  245. font-weight: bold;
  246. text-align: center;
  247. align-items: center;
  248. border: 8px solid blue;
  249. transform: rotate(-10deg);
  250. padding: 0.5rem;
  251. background-color: white;
  252. }
  253. .__img_event {
  254. position: relative;
  255. width: 100%;
  256. height: 500px;
  257. top: 50px;
  258. }
  259. .__img_event img{
  260. width: 100%;
  261. height: 100%;
  262. object-fit: cover;
  263. }
  264. .partager img {
  265. width: 50px;
  266. height: auto;
  267. margin-right: 2%;
  268. }
  269. .data {
  270. border: 8px solid blue;
  271. padding: 1em;
  272. }
  273. .tarif h3, .partager h3, .inscription h3{
  274. color: blue;
  275. }
  276. .tarif, .partager, .inscription {
  277. margin-top: 8%;
  278. }
  279. /*fin page event*/
  280. /*page les projets*/
  281. .projet img {
  282. margin: 5% 0 5% 0;
  283. }
  284. ._pjt{
  285. margin-top: 8%
  286. }
  287. .cat-list{
  288. align-items: baseline;
  289. }
  290. .cat-list li{
  291. margin-right: 20px;
  292. }
  293. /* .cat_name{
  294. margin: 0 4% 0 4%;
  295. } */
  296. /*fin page les projets*/
  297. /*privatiser l'espace*/
  298. .legendes{
  299. background-color: white;
  300. position : absolute;
  301. bottom: 4%;
  302. margin-left: 4%;
  303. border: 8px solid blue;
  304. padding: 1%;
  305. padding-top: 2%;
  306. }
  307. .__organisation {
  308. margin-top: 4%;
  309. text-align: center;
  310. }
  311. ._orga {
  312. margin-top: 4%;
  313. }
  314. /*fin privatiser l'espace*/
  315. /*BOUTONS*/
  316. .__bouttons div {
  317. position: relative;
  318. text-align : center;
  319. margin-top: 20px;
  320. border: 4px solid blue;
  321. border-radius: 0%;
  322. padding: 5px;
  323. /*background-color: white;*/
  324. }
  325. .tout_voir a {
  326. /*penser à mettre le lien sur toute la surface du bouton*/
  327. }
  328. .telechargement_plaquette, .redirection_page, .tout_voir {
  329. position: relative;
  330. margin: 50px auto 10px auto;
  331. display:flex;
  332. border: 4px solid black;
  333. border-radius: 0%;
  334. text-align: center;
  335. padding: 5px;
  336. }
  337. .__bouttons #bouton_asso {
  338. position: relative;
  339. top: 100px;
  340. }
  341. .__bouttons #bouton_contact {
  342. position: relative;
  343. top: -30px;
  344. }
  345. .__bouttons div:hover, .telechargement_plaquette:hover, .bouton_asso:hover, .redirection_page:hover, .tout_voir:hover {
  346. text-decoration-color: white;
  347. transform: rotate(-10deg);
  348. }
  349. .group_link {
  350. margin-top: 2%;
  351. width: 100%;
  352. color: black;
  353. text-decoration: underline;
  354. border: none;
  355. border-radius: 0%;
  356. }
  357. .group_link:hover, .cat_name:hover {
  358. color: black;
  359. background-color: grey;
  360. text-decoration: underline;
  361. border: none;
  362. border-radius: 0%;
  363. }
  364. .hero .slide .flickity-button{
  365. }
  366. /*FIN BOUTON*/
  367. footer{
  368. background-color: rgba(240, 240, 240, 240);
  369. width: 100%;
  370. padding: 5%;
  371. margin-top: 10%;
  372. }
  373. footer div{
  374. margin-right: 20px;
  375. }
  376. footer img {
  377. width: 50px;
  378. height: auto;
  379. }
  380. ._rs{
  381. margin-left: 5%;
  382. }
  383. /* START KEVIN */
  384. header{
  385. z-index: 9999;
  386. position: absolute;
  387. width: 100%;
  388. top: 0;
  389. left: 0;
  390. }
  391. .hero{
  392. width: 100%;
  393. height: 100vh;
  394. position: relative;
  395. }
  396. .hero .slide{
  397. width: 100%;
  398. height: 100vh;
  399. overflow: hidden;
  400. }
  401. .hero .slide .image{
  402. width: 100%;
  403. height: 100vh;
  404. }
  405. .hero .slide img{
  406. width: 100%;
  407. height: 100%;
  408. object-fit: cover;
  409. }
  410. .hero .slide .flickity-page-dots{
  411. bottom: 20px;
  412. }
  413. .hero .slide .flickity-page-dots li{
  414. background: white;
  415. }
  416. .hero .__head{
  417. width: 100%;
  418. text-align: center;
  419. position: absolute;
  420. bottom: 60px;
  421. color: white;
  422. }
  423. .wrapper section{
  424. margin: 150px 0;
  425. padding: 100px 0;
  426. }
  427. .wrapper section > div {
  428. position: relative;
  429. }
  430. .tpsF .img{
  431. width: 100%;
  432. height: 400px;
  433. }
  434. .tpsF .img img{
  435. width: 100%;
  436. height: 100%;
  437. object-fit: cover;
  438. }
  439. .projet .img{
  440. height: 300px;
  441. }
  442. .projet .img img{
  443. width: 100%;
  444. height: 100%;
  445. object-fit: cover;
  446. }
  447. .tableau_engagements .engagement{
  448. width: 50%;
  449. }
  450. .prive .images{
  451. width: 100%;
  452. height: 600px;
  453. }
  454. .prive .img img{
  455. width: 100%;
  456. height: 100%;
  457. object-fit: cover;
  458. }
  459. /* END KEVIN */