_custom.scss 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644
  1. // Your custom SCSS should be written here...
  2. .grav-lightslider {
  3. .lSSlideOuter {
  4. .lSPager.lSpg {
  5. > li a {
  6. z-index: 1;
  7. }
  8. }
  9. }
  10. }
  11. .padding-horiz, .fullwidth #header, .fullwidth #breadcrumbs, .fullwidth .blog-header, .fullwidth .blog-content-item, .fullwidth .content-wrapper, .fullwidth ul.pagination, .fullwidth #body > .modular-row, #body, #header, #footer {
  12. padding-left: 3rem;
  13. }
  14. #body > script:first-child + .grav-lightslider {
  15. margin-top: -3rem;
  16. }
  17. #sb-site{
  18. background: none !important;
  19. #body{
  20. background: none !important;
  21. padding-bottom: 2rem !important;
  22. font-family: "Sarabun", sans-serif !important;
  23. p:empty { display:none; }
  24. }
  25. }
  26. #header.scrolled {
  27. padding-left: 2rem;
  28. padding-right: 2rem;
  29. }
  30. #header #navbar ul.navigation li a {
  31. font-family: "Sarabun", sans-serif;
  32. font-weight: 400;
  33. text-transform: uppercase;
  34. font-size: 1rem;
  35. display: inline-block;
  36. padding: 0.3rem 0.8rem;
  37. -webkit-backface-visibility: hidden;
  38. // float: left;
  39. }
  40. #header #navbar ul.navigation li:after {
  41. display: inline;
  42. content: "|";
  43. padding: 0 .1em;
  44. vertical-align: top;
  45. }
  46. #header #navbar ul.navigation li:last-child:after {
  47. content: "" !important;
  48. }
  49. #header #navbar ul.navigation li a:hover {
  50. font-weight: 900;
  51. }
  52. #logo {
  53. position: relative;
  54. display: flex;
  55. flex-direction: row;
  56. @include transform(scale(0.75));
  57. // &.active {
  58. // a:after {
  59. // top: 0;
  60. // visibility: visible;
  61. // @include transform(scale(0.75));
  62. // @extend .default-animation;
  63. // }
  64. img {
  65. padding: 0.5rem;
  66. height: 3rem;
  67. margin:auto;
  68. #gouv {
  69. padding-right: 2rem;
  70. padding: 0.5rem;
  71. min-height: 4rem !important;
  72. margin:auto;
  73. }
  74. #epau {
  75. }
  76. }
  77. }
  78. .callout {
  79. padding-top: 0.5rem;
  80. }
  81. .callout h1, h2, h3, p {
  82. text-align: left !important;
  83. }
  84. .callout {
  85. padding-right: 0rem !important;
  86. padding-left: 0rem !important;
  87. // h1 {
  88. // margin-bottom: 0rem !important;
  89. // }
  90. h2 {
  91. text-transform: capitalize;
  92. font-weight: 300;
  93. font-size: 1rem;
  94. }
  95. }
  96. .titre_nsb {
  97. display: block;
  98. margin-right: 52%;
  99. h1 {
  100. margin-bottom: 0rem !important;
  101. text-align: right;
  102. padding-right: 0rem !important;
  103. }
  104. }
  105. .titre_bsn {
  106. display: block;
  107. margin-left: 40%;
  108. // padding-right: 15%;
  109. h1 {
  110. text-align: left;
  111. margin-bottom: 0rem !important;
  112. // padding-bottom: 3rem;
  113. }
  114. p {
  115. padding-right: 15%;
  116. }
  117. }
  118. @keyframes animate {
  119. 0% {width: 0%;}
  120. 100% {width: 100%;}
  121. }
  122. @keyframes glissement {
  123. from {
  124. margin-left: 100%;
  125. width: 300%;
  126. }
  127. to {
  128. margin-left: 0%;
  129. width: 100%;
  130. }
  131. }
  132. .after-h1 {
  133. .in-view-right {
  134. // opacity: 0;
  135. // transition: opacity 1s ease-in-out;
  136. animation: animate 1.2s 1 normal ease-in-out forwards;
  137. }
  138. .in-view {
  139. animation: glissement 1.2s 1 normal ease-in-out forwards;
  140. }
  141. }
  142. //
  143. // .after-h1 {
  144. // .test {
  145. // // opacity: 0;
  146. // // transition: opacity 1s ease-in-out;
  147. // animation: anim 2.5s 1 normal ease-in-out forwards;
  148. // }
  149. // .animateMe {
  150. // animation: glissement 2.5s 1 normal ease-in-out forwards;
  151. // }
  152. // }
  153. .programmes {
  154. display: flex;
  155. flex-wrap: wrap;
  156. //
  157. // background-image:
  158. // url("/user/themes/epau-antimatter/images/14360_default_big.jpg") ,
  159. // url("/user/themes/epau-antimatter/images/10361_web_01.jpg") ,
  160. // url("/user/themes/epau-antimatter/images/hyperliens_marseille_.PNG") ,
  161. // url("/user/themes/epau-antimatter/images/jeux-olypiques-paris-2024-village-athle-lot-e2.jpg") ;
  162. //
  163. // background-attachment: fixed;
  164. //
  165. // background-position: 50% -50px;
  166. // position: sticky;
  167. // transform: translateY(-1);
  168. // min-height: 500px;
  169. background-color: #d5d2d1;
  170. z-index: -1;
  171. justify-content: center;
  172. padding-left: 15%;
  173. padding-right: 15%;
  174. padding-top: 8rem;
  175. padding-bottom: 8rem;
  176. }
  177. .parallax-window {
  178. // min-height: 400px;
  179. background: transparent;
  180. // height: 1534px;
  181. // overflow: hidden;
  182. }
  183. // .images-background {
  184. // position: absolute !important;
  185. // width: 100%;
  186. // display: flex;
  187. // flex-direction: row;
  188. // flex-wrap: wrap;
  189. // justify-content: space-between;
  190. //
  191. // #photo1 {
  192. // position: relative;
  193. // top: -60px;
  194. //
  195. // }
  196. //
  197. // #photo2 {
  198. // z-index: 0;
  199. // width:700px !important;
  200. // position: relative;
  201. // top: 260px;
  202. // }
  203. //
  204. // #photo3 {
  205. // z-index: 0;
  206. // width:700px !important;
  207. // position: relative;
  208. // top: 300px;
  209. // }
  210. //
  211. // #photo4 {
  212. // z-index: 0;
  213. // width:700px !important;
  214. // position: relative;
  215. // top: 300px;
  216. // }
  217. // }
  218. .programme {
  219. z-index: 1;
  220. max-width: 35%;
  221. min-width: 26rem;
  222. padding: 1.5rem;
  223. background-color: white;
  224. margin: 0.4rem;
  225. h4 {
  226. text-transform: uppercase;
  227. line-height: 1.2;
  228. }
  229. img {
  230. max-height: 4rem;
  231. }
  232. p {
  233. font-family: $font-family-default;
  234. font-weight: 500;
  235. font-style: italic;
  236. padding-bottom: 1.5rem;
  237. }
  238. }
  239. .programme:hover {
  240. background-color: #000;
  241. transition:0.2s ease-in-out;
  242. p {
  243. color: #fff;
  244. }
  245. h4 {
  246. color: #fff;
  247. }
  248. }
  249. /*CSS pour afficher/masquer un texte via un bouton*/
  250. /*Style du module TEXTE*/
  251. .texte-cache {
  252. position: relative;
  253. max-height: 400px; /*Hauteur du texte visible avant le clic*/
  254. overflow: hidden; /*On cache tout ce qui dépasse des 400px*/
  255. transition: max-height 1s ease; /* Transition CSS entre l'ouverture et la fermeture*/
  256. }
  257. /*Style du module TEXTE lorsqu'il est ouvert*/
  258. .texte-cache.ouvert {
  259. max-height: 300vh; /* On lui définit une hauteur max de tout l'écran si nécessaire pour qu'il affiche tout son contenu*/
  260. }
  261. /*On stylise l'effet de flou lorsque le module TEXTE est fermé, donc il n'a pas la classe "ouvert"*/
  262. .texte-cache:not(.ouvert)::after {
  263. content: '';
  264. position: absolute;
  265. top: 400px;
  266. bottom: 0;
  267. left: 0;
  268. right: 0;
  269. // background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1)); /*Couleur de notre effet*/
  270. }
  271. .bouton-ouverture {
  272. position: relative;
  273. justify-content: center;
  274. cursor: pointer;
  275. border: solid;
  276. border-radius: 0px !important;
  277. background-color: transparent;
  278. text-transform: uppercase;
  279. left: 45%;
  280. // margin-top: 3rem;
  281. margin-bottom: 2rem !important;
  282. }
  283. .gouvernance {
  284. background-color: #000;
  285. color: #ffffff;
  286. text-transform: uppercase;
  287. padding-bottom: 6rem;
  288. padding-top: 2rem;
  289. }
  290. .mozaique_personnes {
  291. background-color: #d5d2d1;
  292. padding-bottom: 4rem;
  293. .equipe {
  294. display: flex !important;
  295. flex-direction: row;
  296. flex-wrap: wrap;
  297. // margin-left: 15%;
  298. // padding-right: 15%;
  299. width: 100%;
  300. padding-left: 22%;
  301. padding-right: 15%;
  302. margin: auto;
  303. justify-items: center;
  304. h3 {
  305. // display: flex;
  306. // flex-grow: 1;
  307. padding-top: 3rem;
  308. // padding-left: 15%;
  309. min-width: 100%;
  310. font-family: "Sarabun", sans-serif;
  311. font-weight: 800;
  312. font-size: 1rem;
  313. line-height: 20px;
  314. text-align: left;
  315. }
  316. .personne {
  317. display: flex;
  318. flex-direction: row;
  319. flex-wrap: wrap;
  320. // width: 50%;
  321. padding-right: 0.5rem;
  322. padding-bottom: 0.5rem;
  323. .mozaique {
  324. display: flex;
  325. flex-direction: row;
  326. justify-content: flex-end;
  327. max-width: 30rem;
  328. min-width: 30rem;
  329. .photo {
  330. // min-width: 10rem;
  331. // min-height: 10rem;
  332. // max-width:50% !important;
  333. overflow: hidden;
  334. width: 15rem !important;
  335. height: 15rem !important;
  336. // object-fit: cover;
  337. // background-size: cover;
  338. img {
  339. // maxwidth: 15rem !important;
  340. // height: 15rem !important;
  341. object-fit: cover;
  342. width: 100%;
  343. height: 100%;
  344. }
  345. }
  346. .info {
  347. background-color: #fff;
  348. display:flex;
  349. flex-direction: column;
  350. font-family: $font-family-default;
  351. width: 50%;
  352. height: 15rem;
  353. min-width: 15rem;
  354. h5 {
  355. font-weight: 900;
  356. font-size: 1.1rem;
  357. margin: 0;
  358. padding-top: 0.8rem;
  359. padding-right: 1rem;
  360. padding-left: 1.3rem;
  361. }
  362. h6 {
  363. font-weight: 300;
  364. font-size: 0.9rem;
  365. font-style: italic;
  366. line-height: 1.3;
  367. margin: 0;
  368. padding-right: 1.2rem;
  369. // padding-bottom: 1rem;
  370. padding-left: 1.3rem;
  371. }
  372. &:hover {
  373. background-color: #000;
  374. color: #fff;
  375. transition:0.2s ease-in-out;
  376. }
  377. }
  378. }
  379. }
  380. }
  381. }
  382. // .mozaique :hover {
  383. // background-color: #000;
  384. // color: #fff;
  385. // }
  386. .bouton {
  387. border: solid !important;
  388. background-color: transparent;
  389. border-radius: 0px !important;
  390. text-transform: uppercase;
  391. align-self: flex-end;
  392. margin:auto;
  393. margin-bottom: 0.8rem !important;
  394. font-size: 0.7rem;
  395. }
  396. //
  397. // .bouton :hover {
  398. // background-color: #000;
  399. // }
  400. // pop in biographie
  401. .modal {
  402. position: fixed;
  403. z-index: 1;
  404. top: 0;
  405. right: 0;
  406. bottom: 0;
  407. left: 0;
  408. display: none;
  409. }
  410. .modal.open{
  411. display: block;
  412. // .bouton {
  413. // border: solid !important;
  414. // background-color: transparent;
  415. // text-transform: uppercase;
  416. // align-self: flex-end;
  417. // margin:auto;
  418. // margin-bottom: 2rem;
  419. // }
  420. }
  421. // #modal .mask{
  422. // background: none !important;
  423. // opacity: 1;
  424. // position: absolute;
  425. // top: 0;
  426. // right: 0;
  427. // bottom: 0;
  428. // left: 0;
  429. //
  430. // }
  431. // #body .grey {
  432. // opacity: 0.5;
  433. // }
  434. .modal .container{
  435. position: absolute;
  436. background: white !important;
  437. top: 50%;
  438. left: 50%;
  439. transform: translateX(-50%) translateY(-50%);
  440. width: 50%;
  441. height: content;
  442. min-height: 50px;
  443. border: solid;
  444. color: black;
  445. .message{
  446. padding: 5% 10% 5% 5%;
  447. }
  448. a.close{
  449. position: absolute;
  450. right: 5%;
  451. top:5%;
  452. color: black;
  453. font-size: 30px;
  454. }
  455. a.close:hover{
  456. color: black;
  457. }
  458. }
  459. #new-footer {
  460. // position:absolute;
  461. display: flex;
  462. flex-direction: column;
  463. .tothetop {
  464. position: absolute;
  465. // align-self: center;
  466. height: 1rem;
  467. bottom: $footer-height + 10rem;
  468. text-align: center;
  469. left: 0;
  470. right: 0;
  471. span {
  472. font-size: 1.7rem;
  473. line-height: 2,5rem;
  474. background: #fff;
  475. width: 4rem;
  476. height: 5rem;
  477. border-radius: $border-radius;
  478. display: inline-block;
  479. text-align: top;
  480. }
  481. }
  482. .footer {
  483. display: flex;
  484. flex-direction: row;
  485. .footer-logos {
  486. display: flex;
  487. flex-direction: row;
  488. flex-wrap: nowrap;
  489. width: 70%;
  490. align-items: center;
  491. margin-left: 3rem;
  492. img {
  493. // min-height: 4rem;
  494. max-height: 4rem;
  495. padding-right: 1rem;
  496. &:last-of-type {
  497. // height: 3.25rem;
  498. padding-top: 0.30rem;
  499. padding-bottom: 0.30rem;
  500. }
  501. }
  502. }
  503. #new-footer .footer .footer-logos img:last-of-type {
  504. height: 0.5rem !important;
  505. }
  506. .contact {
  507. display: flex;
  508. flex-direction: column;
  509. width: 30%;
  510. margin-top: 1.5rem;
  511. align-items: flex-start;
  512. img {
  513. margin-bottom: 1rem;
  514. max-height: 2rem;
  515. }
  516. svg {
  517. margin-bottom: 1rem;
  518. }
  519. h6 {
  520. margin: 0 !important;
  521. font-weight: 600;
  522. }
  523. p {
  524. margin: 0;
  525. }
  526. }
  527. }
  528. }
  529. button:focus {
  530. border: solid !important;
  531. background-color: transparent;
  532. border-radius: 0px !important;
  533. text-transform: uppercase;
  534. align-self: flex-end;
  535. margin:auto;
  536. // margin-bottom: 2rem;
  537. outline: -webkit-focus-ring-color auto 0px;
  538. outline-color: -webkit-focus-ring-color;
  539. outline-style: auto;
  540. outline-width: 0px;
  541. }