bundle.css 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720
  1. @charset "UTF-8";
  2. /*reha*/
  3. /*global*/
  4. /* Colors used for REHA */
  5. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper .form-managed-file, #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper .form-managed-file, #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper .form-managed-file, #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper .form-managed-file, .layout-sidebar-first #block-reha-phase1 footer, #edit-field-telephone-0-phone, .form-submit, .views-field-edit-user, .views-field-edit-node, .links, .field--type-file, .field--type-link,
  6. .next-site,
  7. .prev-site, .page-programme .field--type-link {
  8. text-transform: uppercase;
  9. padding-bottom: 0rem;
  10. padding-left: 0.6rem;
  11. padding-right: 0.6rem;
  12. border: solid black 1px;
  13. margin-bottom: 1rem;
  14. background-color: rgb(255, 255, 255);
  15. font-size: 0.9rem;
  16. }
  17. @media (max-width: 891px) {
  18. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper .form-managed-file, #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper .form-managed-file, #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper .form-managed-file, #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper .form-managed-file, .layout-sidebar-first #block-reha-phase1 footer, #edit-field-telephone-0-phone, .form-submit, .views-field-edit-user, .views-field-edit-node, .links, .field--type-file, .field--type-link,
  19. .next-site,
  20. .prev-site, .page-programme .field--type-link {
  21. font-size: 1rem;
  22. }
  23. }
  24. .page-programme .field--type-link {
  25. width: fit-content;
  26. padding: 0.3rem;
  27. background-color: transparent;
  28. }
  29. .field--type-link,
  30. .next-site,
  31. .prev-site {
  32. width: fit-content;
  33. }
  34. .bouton {
  35. background-color: rgb(255, 255, 255) !important;
  36. border: none !important;
  37. cursor: pointer;
  38. }
  39. .views-field-edit-node {
  40. width: fit-content;
  41. margin-top: 1rem;
  42. }
  43. .views-field-edit-user {
  44. width: fit-content;
  45. margin-top: 1rem;
  46. }
  47. .views-field-edit-user:hover {
  48. background-color: #fdc300;
  49. }
  50. #edit-unlock {
  51. display: none;
  52. }
  53. .views-field-edit-node:hover,
  54. .field--name-field-lien:hover,
  55. #edit-submit:hover,
  56. .form-submit:hover,
  57. .field--type-link:hover,
  58. .field--type-file:hover {
  59. background-color: #fdc300;
  60. }
  61. .mailto {
  62. text-decoration: underline;
  63. }
  64. /*marianne*/
  65. @font-face {
  66. font-family: "Marianne";
  67. src: url("../fonts/Marianne/Marianne-Thin.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin.woff") format("woff");
  68. font-weight: 300;
  69. font-style: normal;
  70. }
  71. @font-face {
  72. font-family: "Marianne";
  73. src: url("../fonts/Marianne/Marianne-Thin_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin_Italic.woff") format("woff");
  74. font-weight: 300;
  75. font-style: italic;
  76. }
  77. @font-face {
  78. font-family: "Marianne";
  79. src: url("../fonts/Marianne/Marianne-Light.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light.woff") format("woff");
  80. font-weight: 400;
  81. font-style: normal;
  82. }
  83. @font-face {
  84. font-family: "Marianne";
  85. src: url("../fonts/Marianne/Marianne-Light_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light_Italic.woff") format("woff");
  86. font-weight: 400;
  87. font-style: italic;
  88. }
  89. @font-face {
  90. font-family: "Marianne";
  91. src: url("../fonts/Marianne/Marianne-Regular.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular.woff") format("woff");
  92. font-weight: 600;
  93. font-style: normal;
  94. }
  95. @font-face {
  96. font-family: "Marianne";
  97. src: url("../fonts/Marianne/Marianne-Regular_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular_Italic.woff") format("woff");
  98. font-weight: 600;
  99. font-style: italic;
  100. }
  101. @font-face {
  102. font-family: "Marianne";
  103. src: url("../fonts/Marianne/Marianne-Medium.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium.woff") format("woff");
  104. font-weight: 800;
  105. font-style: normal;
  106. }
  107. @font-face {
  108. font-family: "Marianne";
  109. src: url("../fonts/Marianne/Marianne-Medium_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium_Italic.woff") format("woff");
  110. font-weight: 800;
  111. font-style: italic;
  112. }
  113. @font-face {
  114. font-family: "Marianne";
  115. src: url("../fonts/Marianne/Marianne-Bold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold.woff") format("woff");
  116. font-weight: 900;
  117. font-style: normal;
  118. }
  119. @font-face {
  120. font-family: "Marianne";
  121. src: url("../fonts/Marianne/Marianne-Bold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold_Italic.woff") format("woff");
  122. font-weight: 900;
  123. font-style: italic;
  124. }
  125. @font-face {
  126. font-family: "Marianne";
  127. src: url("../fonts/Marianne/Marianne-ExtraBold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold.woff") format("woff");
  128. font-weight: 1000;
  129. font-style: normal;
  130. }
  131. @font-face {
  132. font-family: "Marianne";
  133. src: url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff") format("woff");
  134. font-weight: 1000;
  135. font-style: italic;
  136. }
  137. /*Font Awesome*/
  138. @font-face {
  139. font-family: "Font Awesome";
  140. src: url("../fonts/Font Awesome/fontawesome-webfont.woff2") format("woff2");
  141. font-weight: 400;
  142. font-style: normal;
  143. }
  144. .layout-container {
  145. position: relative;
  146. width: 100vw;
  147. background-color: rgba(153, 147, 174, 0.1);
  148. font-family: "Marianne", sans-serif;
  149. font-weight: 400;
  150. font-style: normal;
  151. top: 0%;
  152. left: 0%;
  153. overflow: hidden;
  154. display: flex;
  155. flex-flow: row wrap;
  156. -webkit-user-select: none;
  157. -webkit-touch-callout: none;
  158. -moz-user-select: none;
  159. -ms-user-select: none;
  160. user-select: none;
  161. }
  162. .layout-container header {
  163. flex: 0 0 100%;
  164. }
  165. .layout-container footer {
  166. flex: 0 0 100%;
  167. z-index: 101;
  168. }
  169. .layout-content {
  170. position: relative;
  171. top: 110px;
  172. order: 2;
  173. padding-top: 3rem;
  174. padding-bottom: 6rem;
  175. width: 80%;
  176. margin: auto;
  177. min-height: 100vh;
  178. }
  179. @media (max-width: 891px) {
  180. .layout-content {
  181. width: 90%;
  182. }
  183. }
  184. @media (max-width: 500px) {
  185. .layout-content {
  186. padding-top: 0;
  187. }
  188. }
  189. .layout-content .layout__region--first {
  190. flex: 0 1 25%;
  191. }
  192. .layout-content .layout__region--second {
  193. flex: 0 1 75%;
  194. }
  195. .layout-content .layout__region--second.view-id-home {
  196. margin: 0;
  197. }
  198. aside.layout-sidebar-first {
  199. width: 20%;
  200. order: 1;
  201. margin-top: 5rem;
  202. margin-left: 10%;
  203. margin-right: 1rem;
  204. }
  205. @media (max-width: 891px) {
  206. aside.layout-sidebar-first {
  207. margin-left: 5%;
  208. margin-top: 9rem;
  209. }
  210. }
  211. @media (max-width: 500px) {
  212. aside.layout-sidebar-first {
  213. width: 80%;
  214. margin-top: 3rem;
  215. }
  216. }
  217. aside.layout-sidebar-second {
  218. position: absolute;
  219. top: 0;
  220. right: 0;
  221. background-color: #fff;
  222. height: 300vh;
  223. padding: 1em;
  224. z-index: 100;
  225. }
  226. main {
  227. width: 100%;
  228. display: flex;
  229. flex-direction: row;
  230. position: relative;
  231. }
  232. @media (max-width: 500px) {
  233. main {
  234. flex-direction: column;
  235. }
  236. }
  237. .main-content {
  238. margin-top: 7rem;
  239. }
  240. p {
  241. background-color: transparent;
  242. }
  243. ul {
  244. list-style-type: none;
  245. }
  246. a {
  247. text-decoration: none;
  248. }
  249. :link {
  250. color: black;
  251. }
  252. :visited {
  253. color: black;
  254. }
  255. html.js body {
  256. margin: 0 !important;
  257. }
  258. html.js body div.dialog-off-canvas-main-canvas div.layout-container {
  259. margin: 0 !important;
  260. }
  261. svg.mailto {
  262. display: none;
  263. }
  264. svg.ext {
  265. display: none;
  266. }
  267. p, div {
  268. cursor: default !important;
  269. }
  270. @media (max-width: 800px) {
  271. header #block-reha-logoministere {
  272. padding-left: 2rem;
  273. }
  274. }
  275. /*partials*/
  276. header[role=banner] {
  277. display: block;
  278. height: 120px;
  279. background-color: rgb(255, 255, 255);
  280. z-index: 101;
  281. width: 100vw;
  282. max-width: 100vw;
  283. position: fixed;
  284. top: 0;
  285. box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  286. }
  287. @media (max-width: 800px) {
  288. header[role=banner] {
  289. width: 800px;
  290. }
  291. }
  292. header[role=banner] .region-header {
  293. display: inline-grid;
  294. align-items: center;
  295. grid-template-columns: repeat(10, 1fr);
  296. }
  297. @media (max-width: 891px) {
  298. header[role=banner] .region-header {
  299. display: flex;
  300. flex-direction: row;
  301. justify-content: space-between;
  302. }
  303. }
  304. header[role=banner] .region-header #block-reha-logoministere {
  305. grid-column: 1;
  306. width: 135px;
  307. min-width: 100px;
  308. padding-left: 80px;
  309. height: 100%;
  310. }
  311. header[role=banner] .region-header #block-reha-logoministere img {
  312. max-width: 100%;
  313. object-fit: contain;
  314. }
  315. @media (max-width: 891px) {
  316. header[role=banner] .region-header #block-reha-logoministere {
  317. padding-left: 3%;
  318. padding-top: 0%;
  319. width: 80px;
  320. }
  321. }
  322. header[role=banner] .region-header #block-reha-logoreha {
  323. grid-column: 2;
  324. height: 110px;
  325. padding-left: 1rem;
  326. }
  327. @media (max-width: 891px) {
  328. header[role=banner] .region-header #block-reha-logoreha {
  329. height: fit-content;
  330. padding-left: 0;
  331. }
  332. }
  333. header[role=banner] .region-header #block-reha-logoreha .field--name-field-logo .field__item img {
  334. max-height: 92px;
  335. width: auto;
  336. }
  337. @media (max-width: 891px) {
  338. header[role=banner] .region-header #block-reha-logoreha .field--name-field-logo .field__item img {
  339. max-height: 60px;
  340. }
  341. }
  342. header[role=banner] .region-header #block-reha-navigationprincipale {
  343. grid-column: 3/span 6;
  344. }
  345. @media (max-width: 891px) {
  346. header[role=banner] .region-header #block-reha-navigationprincipale {
  347. padding-left: 1rem;
  348. }
  349. }
  350. header[role=banner] .region-header #block-reha-navigationprincipale ul {
  351. display: flex;
  352. flex-direction: row;
  353. justify-content: space-evenly;
  354. }
  355. @media (max-width: 1100px) {
  356. header[role=banner] .region-header #block-reha-navigationprincipale ul {
  357. width: fit-content;
  358. }
  359. }
  360. header[role=banner] .region-header #block-reha-navigationprincipale ul li.has-active {
  361. text-decoration: underline;
  362. font-weight: 1000;
  363. }
  364. header[role=banner] .region-header #block-reha-navigationprincipale ul li a {
  365. font-weight: 800;
  366. }
  367. header[role=banner] .region-header #block-reha-navigationprincipale ul li a.is-active {
  368. text-decoration: underline;
  369. font-weight: 1000;
  370. }
  371. header[role=banner] .region-header #block-reha-navigationprincipale ul li a:hover {
  372. text-decoration: underline;
  373. }
  374. header[role=banner] .region-header #block-reha-navigationprincipale ul > li a.active {
  375. text-decoration: underline;
  376. font-weight: 1000;
  377. }
  378. header[role=banner] .region-header #block-reha-connexionutilisateur {
  379. grid-column: 9;
  380. display: flex;
  381. flex-direction: column;
  382. height: fit-content;
  383. }
  384. @media (max-width: 891px) {
  385. header[role=banner] .region-header #block-reha-connexionutilisateur {
  386. padding-left: 1rem;
  387. }
  388. }
  389. header[role=banner] .region-header #block-reha-connexionutilisateur .bouton-connexion :before {
  390. content: url(../images/noun-contact-2495375.svg);
  391. }
  392. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion {
  393. height: 0; /* Hauteur initiale à 0 pour créer l'effet de glissement vers le bas */
  394. width: 100%;
  395. position: relative;
  396. }
  397. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full {
  398. display: none;
  399. right: -235px;
  400. top: 36px;
  401. position: absolute;
  402. background-color: rgb(255, 255, 255);
  403. width: 550px;
  404. height: 200vh;
  405. box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  406. clip-path: inset(0px -10px -10px -10px);
  407. padding: 5% 10% 5% 5%;
  408. }
  409. @media (max-width: 891px) {
  410. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full {
  411. top: 50px;
  412. right: -250px;
  413. width: 500px;
  414. height: fit-content;
  415. }
  416. }
  417. @media (max-width: 500px) {
  418. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full {
  419. top: 55px;
  420. right: -90px;
  421. width: 400px;
  422. height: fit-content;
  423. }
  424. }
  425. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full .titre {
  426. width: 90%;
  427. position: relative;
  428. }
  429. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full .titre ::after {
  430. position: relative;
  431. left: 430px;
  432. }
  433. @media (max-width: 500px) {
  434. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full .titre ::after {
  435. left: 325px;
  436. }
  437. }
  438. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full #user-login-form {
  439. width: 80%;
  440. display: flex;
  441. flex-direction: column;
  442. align-items: start;
  443. padding-left: 2.5rem;
  444. }
  445. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full #user-login-form .form-item-persistent-login {
  446. flex-direction: row-reverse;
  447. }
  448. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full #user-login-form .form-item-persistent-login #edit-persistent-login {
  449. width: fit-content;
  450. }
  451. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full #user-login-form .form-item-persistent-login label {
  452. flex-grow: 0;
  453. }
  454. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul {
  455. font-size: 1.2rem;
  456. width: 70%;
  457. display: flex;
  458. flex-direction: column;
  459. margin-top: 0;
  460. margin-bottom: 4rem;
  461. padding-bottom: 4rem;
  462. }
  463. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul .create-account-link {
  464. display: none;
  465. }
  466. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul .request-password-link {
  467. margin-bottom: 4rem;
  468. font-size: 1rem;
  469. }
  470. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul .request-password-link:hover {
  471. text-decoration: #fdc300 underline;
  472. }
  473. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul li p {
  474. font-style: italic;
  475. font-size: 0.9rem;
  476. padding-top: 1rem;
  477. }
  478. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul:first-of-type {
  479. border-bottom: 1px solid black;
  480. }
  481. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul:last-of-type {
  482. display: none;
  483. }
  484. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul:last-of-type a {
  485. text-transform: uppercase;
  486. padding: 1rem;
  487. border: solid black 1px;
  488. margin-bottom: 1rem;
  489. background-color: rgb(255, 255, 255);
  490. }
  491. @media (max-width: 891px) {
  492. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul:last-of-type a {
  493. font-size: 1rem;
  494. }
  495. }
  496. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul:last-of-type a p {
  497. font-style: italic;
  498. }
  499. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul:last-of-type a:hover {
  500. background-color: #fdc300;
  501. }
  502. header[role=banner] .region-header #block-reha-config-pages {
  503. grid-column: 10;
  504. display: flex;
  505. flex-direction: column;
  506. height: fit-content;
  507. }
  508. header[role=banner] .region-header #block-reha-config-pages .bouton-contact {
  509. padding-right: 4rem;
  510. padding-left: 1rem;
  511. }
  512. header[role=banner] .region-header #block-reha-config-pages .bouton-contact ::before {
  513. content: url(../images/noun-letter-1064628.svg);
  514. padding-right: 1rem;
  515. }
  516. header[role=banner] .region-header #block-reha-config-pages .contacts {
  517. height: 0; /* Hauteur initiale à 0 pour créer l'effet de glissement vers le bas */
  518. width: 100%;
  519. }
  520. header[role=banner] .region-header #block-reha-config-pages .contacts .contacts-full {
  521. display: none;
  522. background-color: rgb(255, 255, 255);
  523. position: absolute;
  524. right: 0%;
  525. top: 110px;
  526. width: 550px;
  527. padding-left: 3.5rem;
  528. padding-top: 1rem;
  529. height: 200vh;
  530. box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  531. clip-path: inset(0px -10px -10px -10px);
  532. }
  533. @media (max-width: 891px) {
  534. header[role=banner] .region-header #block-reha-config-pages .contacts .contacts-full {
  535. right: 0px;
  536. top: 100%;
  537. width: 500px;
  538. padding-left: 0;
  539. padding-top: 1rem;
  540. height: fit-content;
  541. }
  542. }
  543. @media (max-width: 500px) {
  544. header[role=banner] .region-header #block-reha-config-pages .contacts .contacts-full {
  545. width: 100%;
  546. width: -moz-available; /* For Mozzila */
  547. width: -webkit-fill-available; /* For Chrome */
  548. width: stretch; /* Unprefixed */
  549. }
  550. }
  551. header[role=banner] .region-header #block-reha-config-pages .contacts .contacts-full .titre {
  552. padding-right: 2rem;
  553. padding-left: 3rem;
  554. }
  555. @media (max-width: 500px) {
  556. header[role=banner] .region-header #block-reha-config-pages .contacts .contacts-full .titre {
  557. padding-left: 1.5rem;
  558. }
  559. }
  560. header[role=banner] .region-header #block-reha-config-pages .contacts .contacts-full .titre ::after {
  561. left: 290px;
  562. }
  563. @media (max-width: 891px) {
  564. header[role=banner] .region-header #block-reha-config-pages .contacts .contacts-full .titre ::after {
  565. left: 242px;
  566. }
  567. }
  568. @media (max-width: 500px) {
  569. header[role=banner] .region-header #block-reha-config-pages .contacts .contacts-full .titre ::after {
  570. left: 150px;
  571. }
  572. }
  573. header[role=banner] .region-header #block-reha-config-pages .contacts .field__item {
  574. display: flex;
  575. flex-direction: column;
  576. padding-left: 3rem;
  577. }
  578. @media (max-width: 891px) {
  579. header[role=banner] .region-header #block-reha-config-pages .contacts .field__item {
  580. padding-bottom: 2rem;
  581. }
  582. }
  583. @media (max-width: 500px) {
  584. header[role=banner] .region-header #block-reha-config-pages .contacts .field__item {
  585. padding-left: 2rem;
  586. padding-bottom: 2rem;
  587. padding-right: 1.5rem;
  588. }
  589. }
  590. header[role=banner] #block-reha-views-block-current-user-block-block-1 {
  591. grid-column: 9;
  592. width: auto;
  593. display: flex;
  594. flex-direction: column;
  595. height: fit-content;
  596. }
  597. header[role=banner] #block-reha-views-block-current-user-block-block-1 .bouton-connected h2 {
  598. font-size: 1rem;
  599. color: black;
  600. display: flex;
  601. flex-direction: column;
  602. flex-wrap: nowrap;
  603. }
  604. header[role=banner] #block-reha-views-block-current-user-block-block-1 .bouton-connected :before {
  605. content: url(../images/noun-contact-2495375.svg);
  606. padding-right: 1rem;
  607. }
  608. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected {
  609. height: 0; /* Hauteur initiale à 0 pour créer l'effet de glissement vers le bas */
  610. width: 100%;
  611. position: relative;
  612. }
  613. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full {
  614. display: none;
  615. right: -40%;
  616. position: absolute;
  617. background-color: rgb(255, 255, 255);
  618. width: 550px;
  619. height: 200vh;
  620. box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  621. clip-path: inset(0px -10px -10px -10px);
  622. padding: 5% 10% 110px 20%;
  623. }
  624. @media (max-width: 450px) {
  625. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full {
  626. width: 90vw;
  627. }
  628. }
  629. @media (max-width: 500px) {
  630. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full .titre {
  631. font-size: 1.4rem;
  632. }
  633. }
  634. @media (max-width: 500px) {
  635. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full .titre ::after {
  636. left: 50px;
  637. }
  638. }
  639. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full footer {
  640. font-weight: 400;
  641. font-size: 1rem;
  642. margin-top: 2rem;
  643. border-top: 1px solid black;
  644. padding-top: 1.5rem;
  645. }
  646. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full footer ul {
  647. width: 45%;
  648. display: flex;
  649. flex-direction: column-reverse;
  650. padding-left: 0;
  651. }
  652. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full footer ul li:first-of-type {
  653. margin-top: 4rem;
  654. border-bottom: 1px solid black;
  655. }
  656. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full footer ul li {
  657. width: fit-content;
  658. text-transform: uppercase;
  659. padding: 1rem;
  660. border: solid black 1px;
  661. margin-bottom: 1rem;
  662. background-color: rgb(255, 255, 255);
  663. }
  664. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full footer ul li:hover {
  665. background-color: #fdc300;
  666. }
  667. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full footer ul li.addoperation {
  668. display: none;
  669. }
  670. .bouton {
  671. align-self: flex-end;
  672. width: fit-content;
  673. }
  674. @media (max-width: 891px) {
  675. .bouton {
  676. font-size: 0.1rem;
  677. color: white;
  678. padding-right: 0 !important;
  679. }
  680. }
  681. .bouton h2 {
  682. text-transform: lowercase;
  683. display: inline-flex;
  684. font-size: 0.001rem;
  685. color: white;
  686. }
  687. @media (max-width: 891px) {
  688. .bouton h2 {
  689. font-size: 0rem;
  690. color: white;
  691. padding-right: 0 !important;
  692. }
  693. }
  694. .titre {
  695. font-weight: 800;
  696. font-size: 1.8rem;
  697. display: flex;
  698. justify-content: space-between;
  699. align-items: center;
  700. }
  701. .titre::after {
  702. content: url(../images/noun-cross-1151731.svg);
  703. cursor: pointer;
  704. }
  705. footer {
  706. background-color: rgb(255, 255, 255);
  707. padding-top: 3rem;
  708. font-family: "Marianne";
  709. font-weight: 800;
  710. font-size: 1.1rem;
  711. text-transform: lowercase;
  712. }
  713. footer div {
  714. display: flex;
  715. flex-direction: row;
  716. }
  717. @media (max-width: 891px) {
  718. footer div {
  719. flex-wrap: wrap;
  720. }
  721. }
  722. @media (max-width: 520px) {
  723. footer div {
  724. flex-direction: column;
  725. }
  726. }
  727. footer h2 {
  728. font-size: 1.1rem;
  729. }
  730. footer section:not(:first-of-type) {
  731. border-left: #fdc300 solid 2px;
  732. padding-left: 2rem;
  733. }
  734. @media (max-width: 891px) {
  735. footer section:not(:first-of-type) {
  736. margin-left: 1rem;
  737. margin-right: 1rem;
  738. border-left: #fdc300 solid 2px;
  739. }
  740. }
  741. @media (max-width: 520px) {
  742. footer section:not(:first-of-type) {
  743. margin-left: 1rem;
  744. margin-right: 1rem;
  745. border-left: none;
  746. border-top: #fdc300 solid 2px;
  747. }
  748. }
  749. footer section:not(:last-of-type) {
  750. padding-right: 5rem;
  751. }
  752. @media (max-width: 891px) {
  753. footer section:not(:last-of-type) {
  754. padding-right: 0;
  755. }
  756. }
  757. @media (max-width: 520px) {
  758. footer section:not(:last-of-type) {
  759. padding-right: 0;
  760. }
  761. }
  762. footer section:last-of-type {
  763. padding-right: 5rem;
  764. }
  765. @media (max-width: 891px) {
  766. footer section:last-of-type {
  767. border-top: #fdc300 solid 2px;
  768. border-left: none;
  769. }
  770. }
  771. #footer-left {
  772. margin-left: 10%;
  773. }
  774. @media (max-width: 891px) {
  775. #footer-left {
  776. margin-left: 1rem;
  777. padding-left: 2rem;
  778. width: 40%;
  779. }
  780. }
  781. @media (max-width: 520px) {
  782. #footer-left {
  783. width: 100%;
  784. margin-left: 1rem;
  785. padding-left: 2rem;
  786. }
  787. }
  788. #footer-left div {
  789. display: flex;
  790. flex-direction: column;
  791. }
  792. #footer-left div #block-reha-pieddepage ul {
  793. padding-left: 0;
  794. }
  795. #footer-left div #block-reha-logoreha-3 {
  796. display: none;
  797. }
  798. #footer-left div .social-media-links--platforms {
  799. display: flex;
  800. flex-direction: row;
  801. }
  802. #footer-left div .social-media-links--platforms svg.ext {
  803. display: none;
  804. }
  805. @media (max-width: 891px) {
  806. #footer-middle {
  807. width: 40%;
  808. }
  809. }
  810. @media (max-width: 520px) {
  811. #footer-middle {
  812. width: 100%;
  813. margin-right: 1rem;
  814. }
  815. }
  816. #footer-middle #block-reha-operateurduprogramme {
  817. display: flex;
  818. flex-direction: column;
  819. }
  820. #footer-middle #block-reha-operateurduprogramme img {
  821. max-width: 150px;
  822. height: fit-content;
  823. max-height: 100px;
  824. object-fit: contain;
  825. padding: 1rem;
  826. }
  827. #footer-right #block-reha-config-pages-2 {
  828. display: flex;
  829. flex-direction: column;
  830. }
  831. #footer-right #block-reha-config-pages-2 .field--name-field-partenaires .field__items {
  832. display: flex;
  833. flex-direction: row;
  834. flex-wrap: wrap;
  835. }
  836. #footer-right #block-reha-config-pages-2 .field--name-field-partenaires .field__items img {
  837. max-width: 120px;
  838. height: fit-content;
  839. max-height: 115px;
  840. object-fit: contain;
  841. }
  842. .form-item {
  843. display: flex;
  844. flex-direction: column;
  845. }
  846. label {
  847. padding-bottom: 0.5rem;
  848. }
  849. input {
  850. height: 2rem;
  851. width: 50%;
  852. }
  853. @media (max-width: 500px) {
  854. input {
  855. width: 90%;
  856. }
  857. }
  858. .description {
  859. width: 50%;
  860. }
  861. @media (max-width: 500px) {
  862. .description {
  863. width: 90%;
  864. }
  865. }
  866. .form-submit {
  867. text-transform: uppercase;
  868. font-size: 0.9rem;
  869. font-weight: 400;
  870. font-family: "Marianne", sans-serif;
  871. width: fit-content;
  872. }
  873. @media (max-width: 891px) {
  874. .form-submit {
  875. font-size: 1rem;
  876. }
  877. }
  878. #user-login-form {
  879. padding-left: 2rem;
  880. }
  881. #user-login-form .form-item {
  882. flex-direction: row;
  883. padding-bottom: 1rem;
  884. padding-left: 0.2;
  885. width: 80%;
  886. flex-wrap: wrap;
  887. }
  888. #user-login-form .form-item label {
  889. padding-right: 0.5rem;
  890. flex: 1 1 auto;
  891. }
  892. #user-login-form .form-item .description {
  893. width: 100%;
  894. font-style: italic;
  895. font-size: 0.8rem;
  896. padding-top: 0.5rem;
  897. }
  898. #edit-persistent-login {
  899. height: 1.5rem;
  900. }
  901. h4 {
  902. text-align: start;
  903. padding-left: 10%;
  904. font-size: 2rem;
  905. }
  906. .layout-sidebar-first #block-reha-phase1 {
  907. border: solid #fdc300 1px;
  908. font-weight: 800;
  909. padding: 1rem;
  910. width: 80%;
  911. }
  912. @media (max-width: 891px) {
  913. .layout-sidebar-first #block-reha-phase1 {
  914. width: 100%;
  915. }
  916. }
  917. .layout-sidebar-first #block-reha-phase1 h2 {
  918. margin-top: 0;
  919. margin-bottom: 0;
  920. text-transform: lowercase;
  921. font-weight: 1000;
  922. line-height: 1rem;
  923. font-size: 1.5rem;
  924. }
  925. .layout-sidebar-first #block-reha-phase1 p {
  926. font-size: 1.5rem;
  927. line-height: 1.8rem;
  928. margin-top: 0.8rem;
  929. }
  930. .layout-sidebar-first #block-reha-phase1 footer {
  931. width: fit-content;
  932. }
  933. aside.layout-sidebar-second {
  934. box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 4px;
  935. z-index: 100;
  936. padding-left: 2rem;
  937. transform: translateX(0%);
  938. transition: transform 0.35s;
  939. }
  940. aside.layout-sidebar-second.close {
  941. transform: translateX(85%); /* Par défaut ouvert */
  942. transition: transform 0.35s;
  943. }
  944. aside.layout-sidebar-second.close:hover {
  945. background-color: #fdc300;
  946. }
  947. aside.layout-sidebar-second h2 {
  948. transform: translateX(-48%) translateY(25vh) rotate(-90deg);
  949. text-transform: uppercase;
  950. font-weight: 400;
  951. cursor: pointer;
  952. padding-top: 2rem;
  953. padding-bottom: 2rem;
  954. text-align: start;
  955. }
  956. aside.layout-sidebar-second h2::before {
  957. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  958. display: inline-block;
  959. transform: translateY(5px) rotate(90deg);
  960. }
  961. aside.layout-sidebar-second h2.__close::before {
  962. content: url("../../dist/images/noun-arrow-1569918-black-left.svg");
  963. display: inline-block;
  964. transform: translateY(2px) rotate(90deg);
  965. }
  966. aside.layout-sidebar-second .view-current-user-doc-profile {
  967. margin: 0 6rem;
  968. display: flex;
  969. flex-direction: column;
  970. }
  971. aside.layout-sidebar-second .view-current-user-doc-profile header {
  972. box-shadow: none;
  973. }
  974. aside.layout-sidebar-second .view-current-user-doc-profile .view-curent-user-site-dossier {
  975. width: fit-content;
  976. margin-bottom: 2rem;
  977. }
  978. aside.layout-sidebar-second .view-current-user-doc-profile .view-curent-user-site-dossier .views-field-title {
  979. font-size: 2rem;
  980. font-weight: 900;
  981. display: flex;
  982. flex-direction: column-reverse;
  983. margin-bottom: 3rem;
  984. }
  985. aside.layout-sidebar-second .view-current-user-doc-profile .view-curent-user-site-dossier .views-field-title::after {
  986. content: url(../images/noun-cross-1151731.svg);
  987. cursor: pointer;
  988. width: fit-content;
  989. display: block;
  990. align-self: flex-end;
  991. }
  992. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur::before {
  993. content: "";
  994. display: block;
  995. width: 80%;
  996. margin-top: 0.6rem;
  997. margin-bottom: 1rem;
  998. border-bottom: black solid 1px;
  999. }
  1000. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--name-field-fichiers,
  1001. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--type-file {
  1002. border: none;
  1003. }
  1004. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--name-field-fichiers:hover,
  1005. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--type-file:hover {
  1006. background-color: white !important;
  1007. }
  1008. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--name-field-fichiers .field__items .field__item,
  1009. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--type-file .field__items .field__item {
  1010. text-transform: uppercase;
  1011. padding-bottom: 0rem;
  1012. padding-left: 0.6rem;
  1013. padding-right: 0.6rem;
  1014. border: solid black 1px;
  1015. margin-bottom: 1rem;
  1016. background-color: rgb(255, 255, 255);
  1017. font-size: 0.9rem;
  1018. width: fit-content;
  1019. }
  1020. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--name-field-fichiers .field__items .field__item:hover,
  1021. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--type-file .field__items .field__item:hover {
  1022. background-color: #fdc300;
  1023. }
  1024. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-de-pilotage,
  1025. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-evenement,
  1026. aside.layout-sidebar-second .view-current-user-doc-profile .paragraph--type--dossier {
  1027. text-transform: uppercase;
  1028. display: flex;
  1029. flex-direction: column;
  1030. }
  1031. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-de-pilotage > div:nth-child(1),
  1032. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-evenement > div:nth-child(1),
  1033. aside.layout-sidebar-second .view-current-user-doc-profile .paragraph--type--dossier > div:nth-child(1) {
  1034. display: flex;
  1035. align-items: center;
  1036. flex-direction: row;
  1037. }
  1038. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-de-pilotage > div:nth-child(1) .field__item .paragraph--type--dossier,
  1039. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-evenement > div:nth-child(1) .field__item .paragraph--type--dossier,
  1040. aside.layout-sidebar-second .view-current-user-doc-profile .paragraph--type--dossier > div:nth-child(1) .field__item .paragraph--type--dossier {
  1041. padding-left: 10%;
  1042. }
  1043. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-de-pilotage > div:nth-child(1) .field__item .paragraph--type--dossier .field--name-field-fichiers,
  1044. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-evenement > div:nth-child(1) .field__item .paragraph--type--dossier .field--name-field-fichiers,
  1045. aside.layout-sidebar-second .view-current-user-doc-profile .paragraph--type--dossier > div:nth-child(1) .field__item .paragraph--type--dossier .field--name-field-fichiers {
  1046. text-transform: none;
  1047. border: none;
  1048. padding-left: 10%;
  1049. }
  1050. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-de-pilotage > div:nth-child(1) .field__item .paragraph--type--dossier .field--name-field-fichiers span:nth-of-type(2),
  1051. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-evenement > div:nth-child(1) .field__item .paragraph--type--dossier .field--name-field-fichiers span:nth-of-type(2),
  1052. aside.layout-sidebar-second .view-current-user-doc-profile .paragraph--type--dossier > div:nth-child(1) .field__item .paragraph--type--dossier .field--name-field-fichiers span:nth-of-type(2) {
  1053. display: none;
  1054. }
  1055. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-de-pilotage > div:nth-child(1)::before,
  1056. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-evenement > div:nth-child(1)::before,
  1057. aside.layout-sidebar-second .view-current-user-doc-profile .paragraph--type--dossier > div:nth-child(1)::before {
  1058. content: url("../../dist/images/noun-file-6880430.svg");
  1059. display: inline-flex;
  1060. width: 40px;
  1061. height: auto;
  1062. padding-right: 1rem;
  1063. align-items: center;
  1064. }
  1065. aside.layout-sidebar-second footer.view-footer {
  1066. margin-top: 3rem;
  1067. text-transform: uppercase;
  1068. border: solid black 1px;
  1069. background-color: rgb(255, 255, 255);
  1070. font-size: 0.9rem;
  1071. width: fit-content;
  1072. font-weight: 400;
  1073. padding-top: 0;
  1074. align-self: left;
  1075. margin-left: 1rem;
  1076. }
  1077. @media (max-width: 891px) {
  1078. aside.layout-sidebar-second footer.view-footer {
  1079. font-size: 1rem;
  1080. }
  1081. }
  1082. aside.layout-sidebar-second footer.view-footer p {
  1083. margin: 0;
  1084. padding: 0.3rem;
  1085. }
  1086. aside.layout-sidebar-second footer.view-footer :hover {
  1087. background-color: #fdc300;
  1088. }
  1089. aside.layout-sidebar-second footer.view-footer p {
  1090. padding-left: 0.6rem;
  1091. padding-right: 0.6rem;
  1092. }
  1093. .field--name-field-dossier-de-pilotage > div:nth-child(2) > div:nth-child(1) > div:nth-child(2):hover {
  1094. background-color: none !important;
  1095. }
  1096. /* Slider */
  1097. .slick-loading .slick-list {
  1098. background: #fff url("./ajax-loader.gif") center center no-repeat;
  1099. }
  1100. /* Icons */
  1101. @font-face {
  1102. font-family: "slick";
  1103. src: url("./fonts/slick.eot");
  1104. src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  1105. font-weight: normal;
  1106. font-style: normal;
  1107. }
  1108. /* Arrows */
  1109. .slick-prev,
  1110. .slick-next {
  1111. position: absolute;
  1112. display: block;
  1113. z-index: 9;
  1114. line-height: 0px;
  1115. font-size: 0px;
  1116. cursor: pointer;
  1117. background: transparent;
  1118. color: transparent;
  1119. top: 18%;
  1120. -webkit-transform: translate(0, -50%);
  1121. -ms-transform: translate(0, -50%);
  1122. transform: translate(0, -50%);
  1123. padding: 0;
  1124. border: none;
  1125. outline: none;
  1126. }
  1127. .slick-prev:hover, .slick-prev:focus,
  1128. .slick-next:hover,
  1129. .slick-next:focus {
  1130. outline: none;
  1131. background: transparent;
  1132. color: transparent;
  1133. }
  1134. .slick-prev:hover:before, .slick-prev:focus:before,
  1135. .slick-next:hover:before,
  1136. .slick-next:focus:before {
  1137. opacity: 1;
  1138. }
  1139. .slick-prev.slick-disabled:before,
  1140. .slick-next.slick-disabled:before {
  1141. opacity: 0.25;
  1142. }
  1143. .slick-prev:before,
  1144. .slick-next:before {
  1145. font-family: "slick";
  1146. color: rgb(153, 147, 174);
  1147. opacity: 0.4;
  1148. -webkit-font-smoothing: antialiased;
  1149. -moz-osx-font-smoothing: grayscale;
  1150. }
  1151. .slick-prev {
  1152. left: 2%;
  1153. padding-left: 4rem;
  1154. }
  1155. [dir=rtl] .slick-prev {
  1156. left: auto;
  1157. right: 200px;
  1158. }
  1159. .slick-prev:before {
  1160. content: url("../../dist/images/moyennes_fleches_prev.svg");
  1161. }
  1162. [dir=rtl] .slick-prev:before {
  1163. content: url("../../dist/images/moyennes_fleches_prev.svg");
  1164. }
  1165. .slick-next {
  1166. right: 270px;
  1167. }
  1168. [dir=rtl] .slick-next {
  1169. left: -25px;
  1170. right: auto;
  1171. }
  1172. .slick-next:before {
  1173. content: url("../../dist/images/moyennes_fleches_next.svg");
  1174. }
  1175. [dir=rtl] .slick-next:before {
  1176. content: url("../../dist/images/moyennes_fleches_next.svg");
  1177. }
  1178. /* Dots */
  1179. .slick-dotted.slick-slider {
  1180. margin-bottom: 30px;
  1181. }
  1182. .slick-dots {
  1183. position: absolute;
  1184. bottom: -60px;
  1185. list-style: none;
  1186. display: block;
  1187. text-align: center;
  1188. padding: 0;
  1189. margin: 0;
  1190. width: 100%;
  1191. }
  1192. .slick-dots li {
  1193. position: relative;
  1194. display: inline-block;
  1195. height: 20px;
  1196. width: 20px;
  1197. margin: 0 5px;
  1198. padding: 0;
  1199. cursor: pointer;
  1200. }
  1201. .slick-dots li button {
  1202. border: 0;
  1203. background: transparent;
  1204. display: block;
  1205. height: 50px;
  1206. width: 50px;
  1207. outline: none;
  1208. line-height: 0px;
  1209. font-size: 0px;
  1210. color: transparent;
  1211. padding: 5px;
  1212. cursor: pointer;
  1213. }
  1214. .slick-dots li button:hover, .slick-dots li button:focus {
  1215. outline: none;
  1216. }
  1217. .slick-dots li button:hover:before, .slick-dots li button:focus:before {
  1218. opacity: 1;
  1219. }
  1220. .slick-dots li button:before {
  1221. position: absolute;
  1222. top: 0;
  1223. left: 0;
  1224. content: "•";
  1225. width: 50px;
  1226. height: 50px;
  1227. font-family: "slick";
  1228. font-size: 40px;
  1229. line-height: 20px;
  1230. text-align: center;
  1231. color: black;
  1232. opacity: 0.25;
  1233. -webkit-font-smoothing: antialiased;
  1234. -moz-osx-font-smoothing: grayscale;
  1235. }
  1236. .slick-dots li.slick-active button:before {
  1237. color: black;
  1238. opacity: 0.4;
  1239. }
  1240. /* Slider */
  1241. .slick-slider {
  1242. position: relative;
  1243. display: block;
  1244. box-sizing: border-box;
  1245. -webkit-touch-callout: none;
  1246. -webkit-user-select: none;
  1247. -khtml-user-select: none;
  1248. -moz-user-select: none;
  1249. -ms-user-select: none;
  1250. user-select: none;
  1251. -ms-touch-action: pan-y;
  1252. touch-action: pan-y;
  1253. -webkit-tap-highlight-color: transparent;
  1254. }
  1255. .slick-list {
  1256. position: relative;
  1257. overflow: hidden;
  1258. display: block;
  1259. margin: 0;
  1260. padding: 0;
  1261. }
  1262. .slick-list:focus {
  1263. outline: none;
  1264. }
  1265. .slick-list.dragging {
  1266. cursor: pointer;
  1267. cursor: hand;
  1268. }
  1269. .slick-slider .slick-track,
  1270. .slick-slider .slick-list {
  1271. -webkit-transform: translate3d(0, 0, 0);
  1272. -moz-transform: translate3d(0, 0, 0);
  1273. -ms-transform: translate3d(0, 0, 0);
  1274. -o-transform: translate3d(0, 0, 0);
  1275. transform: translate3d(0, 0, 0);
  1276. }
  1277. .slick-track {
  1278. position: relative;
  1279. left: 0;
  1280. top: 0;
  1281. display: block;
  1282. margin-left: auto;
  1283. margin-right: auto;
  1284. }
  1285. .slick-track:before, .slick-track:after {
  1286. content: "";
  1287. display: table;
  1288. }
  1289. .slick-track:after {
  1290. clear: both;
  1291. }
  1292. .slick-loading .slick-track {
  1293. visibility: hidden;
  1294. }
  1295. .slick-slide {
  1296. float: left;
  1297. height: 100%;
  1298. min-height: 1px;
  1299. display: none;
  1300. }
  1301. [dir=rtl] .slick-slide {
  1302. float: right;
  1303. }
  1304. .slick-slide img {
  1305. display: block;
  1306. }
  1307. .slick-slide.slick-loading img {
  1308. display: none;
  1309. }
  1310. .slick-slide.dragging img {
  1311. pointer-events: none;
  1312. }
  1313. .slick-initialized .slick-slide {
  1314. display: block;
  1315. }
  1316. .slick-loading .slick-slide {
  1317. visibility: hidden;
  1318. }
  1319. .slick-vertical .slick-slide {
  1320. display: block;
  1321. height: auto;
  1322. border: 1px solid transparent;
  1323. }
  1324. .slick-arrow.slick-hidden {
  1325. display: none;
  1326. }
  1327. .view-actus > .slick-arrow,
  1328. .view-sites > .slick-arrow {
  1329. background-image: radial-gradient(white, transparent);
  1330. border-radius: 50%;
  1331. padding: 0.8rem;
  1332. padding-bottom: 1.8rem;
  1333. padding-top: 1.8rem;
  1334. width: 120px;
  1335. height: auto;
  1336. top: 50%;
  1337. }
  1338. .view-actus > .slick-arrow.slick-next,
  1339. .view-sites > .slick-arrow.slick-next {
  1340. padding-right: 0rem;
  1341. right: 8%;
  1342. }
  1343. .view-actus > .slick-arrow.slick-prev,
  1344. .view-sites > .slick-arrow.slick-prev {
  1345. padding-left: 0rem;
  1346. }
  1347. .infos-content {
  1348. position: relative;
  1349. display: flex;
  1350. flex-direction: column;
  1351. border: solid #fdc300 1px;
  1352. background-color: rgb(255, 255, 255);
  1353. padding: 1rem;
  1354. height: fit-content;
  1355. width: 100%;
  1356. position: relative;
  1357. right: 5%;
  1358. margin-bottom: 30px;
  1359. }
  1360. .infos-content h1 {
  1361. order: 2;
  1362. font-size: 1.5rem;
  1363. font-weight: 600;
  1364. margin: 0;
  1365. }
  1366. .infos-content h2 {
  1367. order: 2;
  1368. margin: 0;
  1369. font-size: 1.5rem;
  1370. font-weight: 600;
  1371. padding: 0;
  1372. }
  1373. .infos-content .field--name-field-sous-titre {
  1374. order: 3;
  1375. font-size: 1.5rem;
  1376. }
  1377. .infos-content .field--name-field-date {
  1378. order: 4;
  1379. font-weight: 900;
  1380. }
  1381. .infos-content .field--name-field-type-d-actualite {
  1382. order: 1;
  1383. text-transform: uppercase;
  1384. font-size: 0.8rem;
  1385. }
  1386. .infos-content .field--name-field-site {
  1387. order: 5;
  1388. background-color: rgb(153, 147, 174);
  1389. color: white;
  1390. border-radius: 50px;
  1391. width: fit-content;
  1392. padding: 0 0.9rem 0.3rem 0.9rem;
  1393. margin-top: 0.5rem;
  1394. }
  1395. .infos-content .field--name-field-site .field__item {
  1396. display: inline;
  1397. color: white;
  1398. font-weight: 900;
  1399. font-size: 0.8rem;
  1400. }
  1401. .infos-content .field--name-field-site .field__item a:visited {
  1402. color: white;
  1403. }
  1404. .infos-content .field--name-field-site .field__item a:link {
  1405. color: white;
  1406. }
  1407. .infos-content ul.links {
  1408. order: 6;
  1409. display: none;
  1410. }
  1411. .links-content .field--name-field-liens {
  1412. padding: 0.5rem;
  1413. }
  1414. .links-content .field--name-field-liens .field__items .field__item ::after {
  1415. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  1416. padding-left: 0.5rem;
  1417. padding-right: 0.5rem;
  1418. }
  1419. .links-content .field--name-field-fichiers,
  1420. .links-content .field--name-field-fichier {
  1421. width: fit-content;
  1422. padding: 0.5rem;
  1423. padding-right: 0.8rem;
  1424. }
  1425. .links-content .field--name-field-fichiers .file--mime-application-pdf a,
  1426. .links-content .field--name-field-fichier .file--mime-application-pdf a {
  1427. text-transform: uppercase;
  1428. }
  1429. .links-content .field--name-field-fichiers span:nth-of-type(2),
  1430. .links-content .field--name-field-fichier span:nth-of-type(2) {
  1431. display: none;
  1432. }
  1433. .field--name-field-node-link .field__item ::after {
  1434. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  1435. padding-left: 0.5rem;
  1436. padding-right: 0.5rem;
  1437. }
  1438. /* themes/custom/reha/assets/css/menu-burger-auto.css */
  1439. .rb-sr {
  1440. position: absolute !important;
  1441. width: 1px;
  1442. height: 1px;
  1443. padding: 0;
  1444. margin: -1px;
  1445. overflow: hidden;
  1446. clip: rect(0, 0, 0, 0);
  1447. clip-path: inset(50%);
  1448. white-space: nowrap;
  1449. border: 0;
  1450. }
  1451. /* Bouton burger */
  1452. .rb-toggle {
  1453. display: inline-flex;
  1454. align-items: center;
  1455. justify-content: center;
  1456. gap: 0.5rem;
  1457. border: 1px solid #ddd;
  1458. background: #fff;
  1459. color: #111;
  1460. border-radius: 0.75rem;
  1461. padding: 0.6rem 0.8rem;
  1462. cursor: pointer;
  1463. }
  1464. /* Icône */
  1465. .rb-burger {
  1466. display: inline-flex;
  1467. flex-direction: column;
  1468. gap: 6px;
  1469. }
  1470. .rb-line {
  1471. width: 22px;
  1472. height: 2px;
  1473. background: currentColor;
  1474. display: block;
  1475. transition: transform 0.2s ease, opacity 0.2s ease;
  1476. }
  1477. /* Anim "X" */
  1478. .rb-toggle.is-active .rb-line:nth-child(1) {
  1479. transform: translateY(8px) rotate(45deg);
  1480. }
  1481. .rb-toggle.is-active .rb-line:nth-child(2) {
  1482. opacity: 0;
  1483. }
  1484. .rb-toggle.is-active .rb-line:nth-child(3) {
  1485. transform: translateY(-8px) rotate(-45deg);
  1486. }
  1487. /* Liste (mobile) */
  1488. #main-nav.rb-list {
  1489. list-style: none;
  1490. padding: 0;
  1491. margin: 0.75rem 0 0 0;
  1492. display: grid;
  1493. gap: 0.25rem;
  1494. }
  1495. #main-nav.rb-list a {
  1496. display: block;
  1497. padding: 0.75rem 1rem;
  1498. border-radius: 0.5rem;
  1499. text-decoration: none;
  1500. background: #fff;
  1501. color: #111;
  1502. }
  1503. #main-nav.rb-list a:focus-visible {
  1504. outline: 2px solid #5b9aff;
  1505. outline-offset: 2px;
  1506. }
  1507. /* Desktop / tablette */
  1508. @media (min-width: 768px) {
  1509. .rb-toggle {
  1510. display: none;
  1511. }
  1512. #main-nav.rb-list {
  1513. display: flex;
  1514. gap: 0.5rem;
  1515. margin-top: 0;
  1516. }
  1517. #main-nav.rb-list a {
  1518. background: transparent;
  1519. padding: 0.5rem 0.75rem;
  1520. }
  1521. #main-nav.rb-list a:hover {
  1522. text-decoration: underline;
  1523. }
  1524. }
  1525. /* Impression : menu toujours visible */
  1526. @media print {
  1527. .rb-toggle {
  1528. display: none !important;
  1529. }
  1530. #main-nav.rb-list {
  1531. display: block !important;
  1532. }
  1533. }
  1534. /* 1) Garantir que l’attribut hidden cache bien l’élément,
  1535. même si un autre CSS met un display:... */
  1536. #main-nav[hidden] {
  1537. display: none !important;
  1538. }
  1539. /* 2) Fallback ultra simple : on cache le menu en mobile,
  1540. et on l’affiche quand le bouton est actif.
  1541. (Le JS insère le bouton juste AVANT le <ul>, donc l’adjacence fonctionne) */
  1542. @media (max-width: 767px) {
  1543. #main-nav.rb-list {
  1544. display: none !important;
  1545. }
  1546. .rb-toggle.is-active + #main-nav.rb-list {
  1547. display: grid !important;
  1548. }
  1549. }
  1550. /* --- Empêcher le menu d'impacter la mise en page du header (mobile) --- */
  1551. @media (max-width: 767.98px) {
  1552. /* Le conteneur nav sert d'ancre pour le positionnement absolu */
  1553. #block-reha-navigationprincipale {
  1554. position: relative;
  1555. overflow: visible; /* au cas où un parent a overflow:hidden */
  1556. /* optionnel : si le header a text-align:center et que tu veux
  1557. que le bouton reste à gauche, décommente la ligne suivante */
  1558. /* text-align: initial; */
  1559. }
  1560. /* Par défaut, menu masqué quand le bouton n'est pas actif */
  1561. #block-reha-navigationprincipale .rb-toggle + #main-nav.rb-list {
  1562. display: none !important;
  1563. }
  1564. /* Quand on ouvre: on montre le menu en position absolue, hors du flux */
  1565. #block-reha-navigationprincipale .rb-toggle.is-active + #main-nav.rb-list {
  1566. display: grid !important;
  1567. }
  1568. /* Sortir le UL du flux et de tout align center, en overlay sous la barre */
  1569. #block-reha-navigationprincipale #main-nav.rb-list {
  1570. position: absolute;
  1571. top: 100%; /* juste sous la barre de nav */
  1572. left: 0;
  1573. right: 0; /* pleine largeur du nav */
  1574. z-index: 1000;
  1575. text-align: left; /* ignore tout text-align:center parent */
  1576. margin: 0;
  1577. padding: 0.5rem;
  1578. background: #fff;
  1579. box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  1580. }
  1581. #block-reha-navigationprincipale #main-nav.rb-list a {
  1582. display: block;
  1583. }
  1584. }
  1585. /* --- Desktop : on remet le menu dans le flux normal --- */
  1586. @media (min-width: 768px) {
  1587. #block-reha-navigationprincipale #main-nav.rb-list {
  1588. position: static;
  1589. box-shadow: none;
  1590. padding: 0;
  1591. }
  1592. }
  1593. #popup-overlay {
  1594. display: none;
  1595. position: fixed;
  1596. top: 0;
  1597. left: 0;
  1598. width: 100%;
  1599. height: 100%;
  1600. background: rgba(0, 0, 0, 0.7);
  1601. justify-content: center;
  1602. align-items: center;
  1603. z-index: 9999;
  1604. }
  1605. #popup-overlay img {
  1606. max-width: 90%;
  1607. max-height: 90%;
  1608. border-radius: 8px;
  1609. box-shadow: 0 0 20px #000;
  1610. }
  1611. #popup-overlay .popup-close {
  1612. position: absolute;
  1613. top: 20px;
  1614. right: 30px;
  1615. color: white;
  1616. font-size: 40px;
  1617. font-weight: bold;
  1618. cursor: pointer;
  1619. }
  1620. /*pages*/
  1621. .home-page-layout-content {
  1622. width: 100%;
  1623. }
  1624. .home-page-layout-content .layout-content .layout--onecol {
  1625. width: 90%;
  1626. margin: auto;
  1627. font-size: 1.3rem;
  1628. font-weight: 400;
  1629. font-style: normal;
  1630. }
  1631. .home-page-layout-content .layout-content .layout--onecol h4 {
  1632. font-size: 5rem;
  1633. font-weight: normal;
  1634. margin: 0;
  1635. }
  1636. .home-page-layout-content .layout-content .layout--onecol h5 {
  1637. font-size: 5rem;
  1638. font-weight: 900;
  1639. margin: 0;
  1640. line-height: 0.6;
  1641. }
  1642. @media (max-width: 891px) {
  1643. .home-page-layout-content .layout-content .layout--onecol h5 {
  1644. font-size: 4rem;
  1645. line-height: 0.9;
  1646. }
  1647. }
  1648. @media (max-width: 520px) {
  1649. .home-page-layout-content .layout-content .layout--onecol h5 {
  1650. font-size: 3rem;
  1651. }
  1652. }
  1653. .home-page-layout-content .layout-content .layout--onecol img {
  1654. height: auto;
  1655. padding-top: 2rem;
  1656. padding-bottom: 2rem;
  1657. }
  1658. .home-page-layout-content .layout-content .layout--onecol .block-region-content {
  1659. display: grid;
  1660. grid-column: repeat(2, 1fr);
  1661. }
  1662. @media (max-width: 891px) {
  1663. .home-page-layout-content .layout-content .layout--onecol .block-region-content {
  1664. display: flex;
  1665. flex-direction: column;
  1666. }
  1667. }
  1668. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-views-blockhome-block-1 {
  1669. margin-bottom: 2rem;
  1670. }
  1671. @media (max-width: 500px) {
  1672. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-views-blockhome-block-1 img {
  1673. width: -moz-available;
  1674. }
  1675. }
  1676. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-block-content5ae07b35-3c0b-48f5-b51b-f0f0e4c1765f {
  1677. display: none !important;
  1678. grid-column: 1;
  1679. grid-row: 2/span 2;
  1680. width: 80%;
  1681. border: solid #fdc300 1px;
  1682. background-color: rgb(255, 255, 255);
  1683. font-weight: 800;
  1684. padding: 2rem;
  1685. margin-right: 1rem;
  1686. }
  1687. @media (max-width: 891px) {
  1688. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-block-content5ae07b35-3c0b-48f5-b51b-f0f0e4c1765f {
  1689. font-size: 4rem;
  1690. }
  1691. }
  1692. @media (max-width: 520px) {
  1693. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-block-content5ae07b35-3c0b-48f5-b51b-f0f0e4c1765f {
  1694. font-size: 3rem;
  1695. }
  1696. }
  1697. .home-page-layout-content .layout-content .layout--onecol .block-region-content h5 {
  1698. font-size: 5rem;
  1699. font-weight: 900;
  1700. margin: 0;
  1701. line-height: 0.6;
  1702. }
  1703. @media (max-width: 891px) {
  1704. .home-page-layout-content .layout-content .layout--onecol .block-region-content h5 {
  1705. font-size: 4rem;
  1706. line-height: 0.9;
  1707. }
  1708. }
  1709. @media (max-width: 520px) {
  1710. .home-page-layout-content .layout-content .layout--onecol .block-region-content h5 {
  1711. font-size: 3rem;
  1712. }
  1713. }
  1714. .home-page-layout-content .layout-content .layout--onecol .block-region-content img {
  1715. height: auto;
  1716. padding-top: 2rem;
  1717. padding-bottom: 2rem;
  1718. }
  1719. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content {
  1720. display: grid;
  1721. grid-template-rows: repeat(8, 1fr);
  1722. }
  1723. @media (max-width: 891px) {
  1724. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content {
  1725. display: flex;
  1726. flex-direction: column;
  1727. }
  1728. }
  1729. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content .block-block-content3d4d153c-9da8-49e2-be7a-d2245f5716ee {
  1730. grid-row: 1/span 3;
  1731. }
  1732. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content .block-views-blockhome-block-1 {
  1733. grid-row: 2/span 6;
  1734. margin-bottom: 2rem;
  1735. }
  1736. @media (max-width: 500px) {
  1737. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content .block-views-blockhome-block-1 img {
  1738. width: -moz-available;
  1739. }
  1740. }
  1741. .user--register h1 {
  1742. font-size: 3rem !important;
  1743. font-weight: 600;
  1744. }
  1745. @media (max-width: 500px) {
  1746. .user--register h1 {
  1747. font-size: 2.5rem !important;
  1748. }
  1749. }
  1750. .user--register .form-item {
  1751. margin-bottom: 2rem;
  1752. }
  1753. .user--register label {
  1754. font-weight: 800;
  1755. }
  1756. .user--register .description {
  1757. text-transform: lowercase;
  1758. font-style: italic;
  1759. }
  1760. .user--register .password-strength .password-strength__meter {
  1761. width: 250px;
  1762. }
  1763. .user--register .password-suggestions {
  1764. text-transform: lowercase;
  1765. font-style: italic;
  1766. font-size: 0.8rem;
  1767. }
  1768. .user--register #edit-pass--description {
  1769. display: none;
  1770. }
  1771. @media (max-width: 891px) {
  1772. .mes-operations {
  1773. width: 70%;
  1774. margin-left: 2rem;
  1775. }
  1776. }
  1777. @media (max-width: 500px) {
  1778. .mes-operations {
  1779. width: 90%;
  1780. }
  1781. }
  1782. .mes-operations .views-row {
  1783. width: 80%;
  1784. padding-bottom: 1rem;
  1785. border-bottom: 1px solid black;
  1786. }
  1787. .mes-operations .views-row .node-type-operation footer {
  1788. display: none;
  1789. }
  1790. .mes-operations .views-row .node-type-operation .field--label-above div:first-child {
  1791. font-weight: 800;
  1792. }
  1793. .mes-operations .views-row .node-type-operation p {
  1794. margin: 0;
  1795. }
  1796. .mes-operations .views-row .node-type-operation .field--label-above {
  1797. margin-bottom: 1rem;
  1798. }
  1799. .mes-operations .views-row .node-type-operation .field--type-file {
  1800. border: none;
  1801. background-color: inherit;
  1802. text-transform: none;
  1803. padding: 0;
  1804. }
  1805. .mes-operations .views-row .views-field {
  1806. margin-bottom: 1.5rem;
  1807. }
  1808. .mes-operations .views-row .views-field-edit-node {
  1809. display: none !important;
  1810. }
  1811. .mes-operations div.views-element-container div footer {
  1812. background-color: white;
  1813. border: solid black 1px;
  1814. text-transform: uppercase;
  1815. padding: 1rem;
  1816. width: fit-content;
  1817. margin-top: 2rem;
  1818. font-weight: 400;
  1819. display: none !important;
  1820. }
  1821. .mes-operations div.views-element-container div footer p {
  1822. margin: 0;
  1823. }
  1824. .mes-operations div.views-element-container div footer:hover {
  1825. background-color: #fdc300;
  1826. }
  1827. #block-reha-contenudelapageprincipale .node-operation-form {
  1828. width: 45%;
  1829. }
  1830. @media (max-width: 891px) {
  1831. #block-reha-contenudelapageprincipale .node-operation-form {
  1832. width: 70%;
  1833. margin-left: 2rem;
  1834. }
  1835. }
  1836. #block-reha-contenudelapageprincipale .node-operation-form #edit-title-wrapper input {
  1837. width: 100%;
  1838. }
  1839. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper {
  1840. background-color: rgba(153, 147, 174, 0) !important;
  1841. border: none;
  1842. padding: 0;
  1843. }
  1844. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper label {
  1845. order: 1;
  1846. font-weight: 800;
  1847. }
  1848. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper .description {
  1849. text-transform: lowercase;
  1850. order: 2;
  1851. font-style: italic;
  1852. }
  1853. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper .form-managed-file {
  1854. order: 3;
  1855. margin-top: 1rem;
  1856. }
  1857. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper {
  1858. background-color: rgba(153, 147, 174, 0) !important;
  1859. border: none;
  1860. padding: 0;
  1861. margin-top: 1rem;
  1862. }
  1863. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper label {
  1864. order: 1;
  1865. font-weight: 800;
  1866. display: flex;
  1867. }
  1868. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--label::after {
  1869. content: url(../images/noun-information-55404.svg);
  1870. padding-left: 1rem;
  1871. cursor: pointer;
  1872. }
  1873. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper .description {
  1874. text-transform: lowercase;
  1875. order: 2;
  1876. font-style: italic;
  1877. width: 100%;
  1878. }
  1879. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--description > br:first-of-type {
  1880. display: none;
  1881. }
  1882. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--description > ul.main {
  1883. display: none;
  1884. }
  1885. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper .form-managed-file {
  1886. order: 3;
  1887. margin-top: 1rem;
  1888. text-transform: lowercase;
  1889. }
  1890. #block-reha-contenudelapageprincipale .node-operation-form label {
  1891. font-weight: 800;
  1892. }
  1893. #block-reha-contenudelapageprincipale .node-operation-form .form-wrapper {
  1894. margin-bottom: 1rem;
  1895. margin-top: 1rem;
  1896. }
  1897. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-commentaire-0-value {
  1898. width: 100%;
  1899. }
  1900. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address input {
  1901. width: 100%;
  1902. }
  1903. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address-container2 {
  1904. display: flex;
  1905. flex-direction: row;
  1906. width: 100%;
  1907. margin-right: 0;
  1908. justify-content: space-between;
  1909. }
  1910. @media (max-width: 891px) {
  1911. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address-container2 {
  1912. flex-direction: column;
  1913. }
  1914. }
  1915. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address-container2 input {
  1916. width: 100%;
  1917. }
  1918. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address-container2 .form-item {
  1919. display: flex;
  1920. flex-direction: column;
  1921. margin-right: 0;
  1922. }
  1923. #block-reha-contenudelapageprincipale .node-operation-form .form-item {
  1924. display: flex;
  1925. flex-direction: column;
  1926. }
  1927. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-commentaire-wrapper {
  1928. margin-bottom: 2rem;
  1929. }
  1930. #block-reha-contenudelapageprincipale .node-operation-form .counter {
  1931. font-style: italic;
  1932. }
  1933. #block-reha-contenudelapageprincipale .form-managed-file {
  1934. text-transform: lowercase;
  1935. }
  1936. #block-reha-contenudelapageprincipale .file--application-pdf {
  1937. text-transform: lowercase;
  1938. }
  1939. #block-reha-contenudelapageprincipale .messages--error {
  1940. text-transform: lowercase;
  1941. }
  1942. html.js body.node-type-operation.node-id-7 div.dialog-off-canvas-main-canvas div.layout-container main div.layout-content div.region.region-content div#block-reha-contenudelapageprincipale.block.block-system.block-system-main-block form#node-operation-edit-form.node-operation-edit-form.node-form div.js-form-item.form-item.js-form-type-vertical-tabs.form-item-.js-form-item-.form-no-label {
  1943. display: none;
  1944. }
  1945. #edit-field-dossier-de-candidature-0--description {
  1946. text-transform: none !important;
  1947. }
  1948. #edit-field-dossier-de-candidature-0--description .depth1 {
  1949. font-weight: 800;
  1950. }
  1951. #edit-field-dossier-de-candidature-0--description .depth2 {
  1952. font-weight: 400;
  1953. }
  1954. #edit-field-dossier-de-candidature-0--description .depth3 {
  1955. text-decoration: none !important;
  1956. }
  1957. .user--edit label {
  1958. font-weight: 800;
  1959. }
  1960. .user--edit .password-strength {
  1961. width: fit-content;
  1962. }
  1963. .user--edit .description {
  1964. font-style: italic;
  1965. }
  1966. .user--edit .form-item {
  1967. margin-bottom: 1rem;
  1968. width: 70%;
  1969. }
  1970. #block-reha-contenudelapageprincipale #node-operation-edit-form {
  1971. width: 45%;
  1972. }
  1973. @media (max-width: 891px) {
  1974. #block-reha-contenudelapageprincipale #node-operation-edit-form {
  1975. width: 70%;
  1976. margin-left: 2rem;
  1977. }
  1978. }
  1979. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-title-wrapper input {
  1980. width: 100%;
  1981. }
  1982. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper {
  1983. background-color: rgba(153, 147, 174, 0) !important;
  1984. border: none;
  1985. padding: 0;
  1986. }
  1987. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper label {
  1988. order: 1;
  1989. font-weight: 800;
  1990. }
  1991. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper .description {
  1992. text-transform: lowercase;
  1993. order: 2;
  1994. font-style: italic;
  1995. }
  1996. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper .form-managed-file {
  1997. order: 3;
  1998. margin-top: 1rem;
  1999. }
  2000. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper {
  2001. background-color: rgba(153, 147, 174, 0) !important;
  2002. border: none;
  2003. padding: 0;
  2004. margin-top: 1rem;
  2005. }
  2006. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper label {
  2007. order: 1;
  2008. font-weight: 800;
  2009. display: flex;
  2010. }
  2011. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--label::after {
  2012. content: url(../images/noun-information-55404.svg);
  2013. padding-left: 1rem;
  2014. cursor: pointer;
  2015. }
  2016. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper .description {
  2017. text-transform: lowercase;
  2018. order: 2;
  2019. font-style: italic;
  2020. width: 100%;
  2021. }
  2022. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--description > br:first-of-type {
  2023. display: none;
  2024. }
  2025. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--description > ul.main {
  2026. display: none;
  2027. }
  2028. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper .form-managed-file {
  2029. order: 3;
  2030. margin-top: 1rem;
  2031. text-transform: lowercase;
  2032. }
  2033. #block-reha-contenudelapageprincipale #node-operation-edit-form label {
  2034. font-weight: 800;
  2035. }
  2036. #block-reha-contenudelapageprincipale #node-operation-edit-form .form-wrapper {
  2037. margin-bottom: 1rem;
  2038. margin-top: 1rem;
  2039. }
  2040. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-commentaire-0-value {
  2041. width: 100%;
  2042. }
  2043. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper summary {
  2044. display: none;
  2045. }
  2046. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper #edit-field-adresse-0-address input {
  2047. width: 100%;
  2048. }
  2049. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper #edit-field-adresse-0-address-container2 {
  2050. display: flex;
  2051. flex-direction: row;
  2052. width: 100%;
  2053. margin-right: 0;
  2054. justify-content: space-between;
  2055. }
  2056. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper #edit-field-adresse-0-address-container2 input {
  2057. width: 100%;
  2058. }
  2059. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper #edit-field-adresse-0-address-container2 .form-item {
  2060. display: flex;
  2061. flex-direction: column;
  2062. margin-right: 0;
  2063. }
  2064. #block-reha-contenudelapageprincipale #node-operation-edit-form .form-item {
  2065. display: flex;
  2066. flex-direction: column;
  2067. }
  2068. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-commentaire-wrapper {
  2069. margin-bottom: 2rem;
  2070. }
  2071. #block-reha-contenudelapageprincipale #node-operation-edit-form .counter {
  2072. font-style: italic;
  2073. }
  2074. #block-reha-contenudelapageprincipale .form-managed-file {
  2075. text-transform: lowercase;
  2076. }
  2077. #block-reha-contenudelapageprincipale .file--application-pdf {
  2078. text-transform: lowercase;
  2079. }
  2080. #block-reha-contenudelapageprincipale .messages--error {
  2081. text-transform: lowercase;
  2082. }
  2083. html.js body.node-type-operation.node-id-7 div.dialog-off-canvas-main-canvas div.layout-container main div.layout-content div.region.region-content div#block-reha-contenudelapageprincipale.block.block-system.block-system-main-block form#node-operation-edit-form.node-operation-edit-form.node-form div.js-form-item.form-item.js-form-type-vertical-tabs.form-item-.js-form-item-.form-no-label {
  2084. display: none;
  2085. }
  2086. #edit-field-dossier-de-candidature-0--description {
  2087. text-transform: none !important;
  2088. }
  2089. #edit-field-dossier-de-candidature-0--description .depth1 {
  2090. font-weight: 800;
  2091. }
  2092. #edit-field-dossier-de-candidature-0--description .depth2 {
  2093. font-weight: 400;
  2094. }
  2095. #edit-field-dossier-de-candidature-0--description .depth3 {
  2096. text-decoration: none !important;
  2097. }
  2098. .page--contacts div.contacts-full section.titre {
  2099. display: none;
  2100. }
  2101. .config_pages--type--mentions-legales {
  2102. width: 70%;
  2103. }
  2104. .home-page-layout-content .block-block-content3bb825b3-ab84-4861-a4f2-2a5e5eed74de {
  2105. border: solid #fdc300 1px;
  2106. background-color: rgb(255, 255, 255);
  2107. font-weight: 1000;
  2108. padding: 2rem;
  2109. margin-right: 1rem;
  2110. width: 16vw;
  2111. margin-left: 12%;
  2112. padding-top: 1rem;
  2113. padding-left: 2rem;
  2114. padding-bottom: 5rem;
  2115. }
  2116. @media (max-width: 891px) {
  2117. .home-page-layout-content .block-block-content3bb825b3-ab84-4861-a4f2-2a5e5eed74de {
  2118. margin-bottom: 1rem;
  2119. margin-top: 2rem;
  2120. width: 50%;
  2121. }
  2122. }
  2123. .home-page-layout-content .block-block-content3bb825b3-ab84-4861-a4f2-2a5e5eed74de p {
  2124. margin: 0;
  2125. font-size: 1.3rem;
  2126. }
  2127. .home-page-layout-content .block-block-content3bb825b3-ab84-4861-a4f2-2a5e5eed74de strong {
  2128. font-size: 1.5rem;
  2129. }
  2130. .home-page-layout-content .block-views-blocksites-block-1 {
  2131. top: -44px;
  2132. position: relative;
  2133. }
  2134. @media (max-width: 891px) {
  2135. .home-page-layout-content .block-views-blocksites-block-1 .views-row {
  2136. margin-left: 1.8rem;
  2137. margin-right: 1.8rem;
  2138. }
  2139. }
  2140. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site {
  2141. width: 70%;
  2142. height: 30vw;
  2143. margin: auto;
  2144. }
  2145. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site {
  2146. background-color: white;
  2147. display: flex;
  2148. flex-direction: row;
  2149. margin: auto;
  2150. height: 100%;
  2151. }
  2152. @media (max-width: 1400px) {
  2153. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site {
  2154. width: 100%;
  2155. display: flex;
  2156. flex-direction: row;
  2157. }
  2158. }
  2159. @media (max-width: 891px) {
  2160. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site {
  2161. width: 100%;
  2162. display: flex;
  2163. flex-direction: column;
  2164. }
  2165. }
  2166. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site {
  2167. order: 1;
  2168. width: 70%;
  2169. height: 100%;
  2170. }
  2171. @media (max-width: 900px) {
  2172. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site {
  2173. width: 100%;
  2174. }
  2175. }
  2176. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image {
  2177. height: 100%;
  2178. }
  2179. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items {
  2180. height: 100%;
  2181. }
  2182. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items .field__item {
  2183. display: flex;
  2184. flex-direction: column;
  2185. align-items: flex-end;
  2186. position: relative;
  2187. height: 100%;
  2188. }
  2189. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items .field__item a {
  2190. height: 100%;
  2191. width: 100%;
  2192. }
  2193. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items .field__item a img {
  2194. height: 100%;
  2195. width: 100%;
  2196. object-fit: fill;
  2197. }
  2198. @media (max-width: 1500px) {
  2199. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items .field__item a img {
  2200. width: 100%;
  2201. }
  2202. }
  2203. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items .field__item blockquote {
  2204. position: absolute;
  2205. font-style: italic;
  2206. margin: 0;
  2207. width: 20vw;
  2208. z-index: 900;
  2209. right: -20vw;
  2210. bottom: 0px;
  2211. }
  2212. @media (max-width: 900px) {
  2213. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items .field__item blockquote {
  2214. left: 0;
  2215. top: 0;
  2216. width: 100%;
  2217. }
  2218. }
  2219. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items .field__item blockquote p {
  2220. margin: 0;
  2221. padding-left: 1rem;
  2222. padding-bottom: 1rem;
  2223. }
  2224. @media (max-width: 900px) {
  2225. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items .field__item blockquote p {
  2226. font-size: 0.8rem;
  2227. }
  2228. }
  2229. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site {
  2230. background-color: rgb(255, 255, 255);
  2231. order: 2;
  2232. display: flex;
  2233. flex-direction: column;
  2234. margin: auto;
  2235. padding: 1rem;
  2236. z-index: 99;
  2237. position: relative;
  2238. justify-content: center;
  2239. }
  2240. @media (max-width: 891px) {
  2241. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site {
  2242. width: auto;
  2243. height: auto;
  2244. display: flex;
  2245. margin: auto;
  2246. margin-bottom: 2rem;
  2247. margin-top: 2rem;
  2248. }
  2249. }
  2250. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site h1 {
  2251. display: none;
  2252. }
  2253. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site h2 {
  2254. order: 3;
  2255. margin: 0;
  2256. font-size: 1.6rem;
  2257. font-weight: 1000;
  2258. }
  2259. @media (max-width: 891px) {
  2260. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site h2 {
  2261. font-size: 1.2rem;
  2262. line-height: 1.3rem;
  2263. }
  2264. }
  2265. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row {
  2266. order: 1;
  2267. display: flex;
  2268. flex-direction: row;
  2269. align-items: end;
  2270. padding-bottom: 0.5rem;
  2271. }
  2272. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site {
  2273. order: 1;
  2274. text-transform: uppercase;
  2275. font-size: 0.9rem;
  2276. display: inline-flex;
  2277. }
  2278. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site::after {
  2279. content: "|";
  2280. padding-left: 1rem;
  2281. padding-right: 1rem;
  2282. }
  2283. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site {
  2284. order: 3;
  2285. font-size: 1rem;
  2286. }
  2287. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .field__item {
  2288. display: flex;
  2289. }
  2290. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .field__item {
  2291. display: flex;
  2292. }
  2293. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address {
  2294. margin: 0;
  2295. display: inline-flex;
  2296. }
  2297. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .postal-code {
  2298. order: 2;
  2299. }
  2300. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .locality {
  2301. order: 1;
  2302. text-transform: capitalize;
  2303. margin-right: 0.5rem;
  2304. }
  2305. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .country {
  2306. display: none;
  2307. }
  2308. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte {
  2309. order: 4;
  2310. font-size: 1.2rem;
  2311. padding-top: 0.5rem;
  2312. }
  2313. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items {
  2314. display: flex;
  2315. flex-direction: row;
  2316. flex-wrap: wrap;
  2317. }
  2318. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items .field__item {
  2319. display: inline;
  2320. }
  2321. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items .field__item::after {
  2322. content: ",";
  2323. padding-right: 0.5rem;
  2324. }
  2325. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__item:last-of-type::after {
  2326. content: "";
  2327. }
  2328. .home-page-layout-content .block-block-content9e601647-144f-4e8e-b9e1-7d744f9141d7 {
  2329. width: fit-content;
  2330. margin: auto;
  2331. z-index: 99;
  2332. margin-top: 1rem;
  2333. margin-bottom: 4rem;
  2334. }
  2335. .home-page-layout-content .block-block-content9e601647-144f-4e8e-b9e1-7d744f9141d7 .field--type-link {
  2336. padding-left: 0.5rem;
  2337. padding-right: 0.3rem;
  2338. padding-bottom: 0.3rem;
  2339. padding-top: 0.3rem;
  2340. }
  2341. .page-sitespilotes h1 {
  2342. width: 80%;
  2343. margin: auto;
  2344. font-weight: 1000;
  2345. }
  2346. .page-sitespilotes .view-display-id-page_1 {
  2347. width: 80%;
  2348. margin: auto;
  2349. display: flex;
  2350. flex-direction: row;
  2351. flex-wrap: wrap;
  2352. align-items: baseline;
  2353. justify-content: space-between;
  2354. }
  2355. @media (max-width: 1200px) {
  2356. .page-sitespilotes .view-display-id-page_1 {
  2357. justify-content: flex-start;
  2358. }
  2359. }
  2360. .page-sitespilotes .view-display-id-page_1 article {
  2361. padding-bottom: 0.7rem;
  2362. }
  2363. .page-sitespilotes .view-display-id-page_1 .views-row {
  2364. width: 28%;
  2365. padding: 1rem;
  2366. }
  2367. @media (max-width: 1200px) {
  2368. .page-sitespilotes .view-display-id-page_1 .views-row {
  2369. width: 40%;
  2370. }
  2371. }
  2372. .page-sitespilotes .view-display-id-page_1 .views-row:hover {
  2373. transform: scale(1.05);
  2374. transition: 0.3s transform ease, 0.3s box-shadow ease;
  2375. }
  2376. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site {
  2377. background-color: white;
  2378. }
  2379. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site {
  2380. display: flex;
  2381. flex-direction: column;
  2382. }
  2383. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .image-site {
  2384. order: 1;
  2385. }
  2386. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .image-site .field--name-field-image {
  2387. max-width: 100%;
  2388. }
  2389. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .image-site .field--name-field-image img {
  2390. width: 100%;
  2391. object-fit: cover;
  2392. max-height: 200px;
  2393. }
  2394. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site {
  2395. background-color: rgb(255, 255, 255);
  2396. order: 2;
  2397. display: flex;
  2398. flex-direction: column;
  2399. padding-left: 1rem;
  2400. padding-right: 1rem;
  2401. padding-top: 0.5rem;
  2402. }
  2403. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site h1 {
  2404. display: none;
  2405. }
  2406. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site h2 {
  2407. order: 2;
  2408. margin: 0;
  2409. font-size: 1.4rem;
  2410. font-weight: 900;
  2411. line-height: 1;
  2412. padding-bottom: 0.8rem;
  2413. }
  2414. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row {
  2415. order: 1;
  2416. display: flex;
  2417. flex-direction: row;
  2418. align-items: end;
  2419. padding-bottom: 0.5rem;
  2420. }
  2421. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site {
  2422. order: 1;
  2423. text-transform: uppercase;
  2424. font-size: 0.8rem;
  2425. display: inline-flex;
  2426. }
  2427. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site::after {
  2428. content: "|";
  2429. padding-left: 1rem;
  2430. padding-right: 1rem;
  2431. }
  2432. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site {
  2433. order: 3;
  2434. font-size: 0.9rem;
  2435. }
  2436. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .field__item {
  2437. display: flex;
  2438. }
  2439. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address {
  2440. margin: 0;
  2441. display: inline-flex;
  2442. }
  2443. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .postal-code {
  2444. order: 2;
  2445. }
  2446. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .locality {
  2447. order: 1;
  2448. text-transform: capitalize;
  2449. margin-right: 0.5rem;
  2450. }
  2451. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .country {
  2452. display: none;
  2453. }
  2454. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte {
  2455. order: 4;
  2456. font-size: 1rem;
  2457. }
  2458. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items {
  2459. display: flex;
  2460. flex-direction: row;
  2461. flex-wrap: wrap;
  2462. }
  2463. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items .field__item {
  2464. display: inline;
  2465. }
  2466. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items .field__item::after {
  2467. content: ",";
  2468. padding-right: 0.5rem;
  2469. }
  2470. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__item:last-of-type::after {
  2471. content: "";
  2472. }
  2473. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site ul.links {
  2474. order: 5;
  2475. text-transform: uppercase;
  2476. padding: 0;
  2477. margin: 0;
  2478. border: none;
  2479. padding-bottom: 1rem;
  2480. padding-top: 3rem;
  2481. display: inline-flex;
  2482. }
  2483. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site ul.links::after {
  2484. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  2485. padding-left: 0.5rem;
  2486. }
  2487. .page-sitespilotes .view-display-id-page_1 footer {
  2488. background-color: transparent;
  2489. text-transform: none !important;
  2490. z-index: 100;
  2491. }
  2492. .page-sitespilotes .view-display-id-page_1 footer p {
  2493. font-size: 2rem;
  2494. padding-left: 1rem;
  2495. font-weight: 1000;
  2496. }
  2497. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 {
  2498. display: flex;
  2499. flex-direction: row;
  2500. flex-wrap: wrap;
  2501. align-items: baseline;
  2502. justify-content: space-between;
  2503. }
  2504. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row {
  2505. width: 28%;
  2506. padding: 1rem;
  2507. }
  2508. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row:hover {
  2509. transform: none;
  2510. }
  2511. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site {
  2512. margin: auto;
  2513. display: flex;
  2514. flex-direction: column;
  2515. width: 100%;
  2516. background-color: transparent;
  2517. }
  2518. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site {
  2519. background-color: transparent;
  2520. order: 2;
  2521. display: flex;
  2522. flex-direction: column;
  2523. padding-left: 1rem;
  2524. padding-right: 1rem;
  2525. padding-right: 1rem;
  2526. }
  2527. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site h2 {
  2528. order: 2;
  2529. margin: 0;
  2530. font-size: 1.4rem;
  2531. font-weight: 900;
  2532. line-height: 1;
  2533. }
  2534. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site h2 a {
  2535. cursor: default !important;
  2536. pointer-events: none;
  2537. }
  2538. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row {
  2539. order: 1;
  2540. display: flex;
  2541. flex-direction: row;
  2542. align-items: center;
  2543. padding-bottom: 0.5rem;
  2544. }
  2545. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row .field--name-field-lettre-de-site {
  2546. order: 1;
  2547. text-transform: uppercase;
  2548. font-size: 0.8rem;
  2549. font-weight: 400;
  2550. display: flex;
  2551. align-items: center;
  2552. }
  2553. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row .field--name-field-lettre-de-site::before {
  2554. content: "SITE";
  2555. padding-right: 0.5rem;
  2556. }
  2557. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row .field--name-field-lettre-de-site::after {
  2558. content: "|";
  2559. padding-left: 1rem;
  2560. padding-right: 1rem;
  2561. }
  2562. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row .field--name-field-adresse-site {
  2563. order: 3;
  2564. }
  2565. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row .field--name-field-adresse-site p.address {
  2566. padding-left: 0;
  2567. margin: 0;
  2568. display: inline-flex;
  2569. font-size: 0.9rem;
  2570. font-weight: 500 !important;
  2571. }
  2572. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row .field--name-field-adresse-site p.address .postal-code {
  2573. order: 2;
  2574. }
  2575. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row .field--name-field-adresse-site p.address .locality {
  2576. order: 1;
  2577. text-transform: capitalize;
  2578. margin-right: 0.5rem;
  2579. }
  2580. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row .field--name-field-adresse-site p.address .country {
  2581. display: none;
  2582. }
  2583. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .field--name-field-architecte {
  2584. order: 4;
  2585. text-transform: capitalize;
  2586. font-weight: 400;
  2587. font-size: 1rem;
  2588. }
  2589. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site ul.links {
  2590. order: 5;
  2591. text-transform: uppercase;
  2592. padding: 0;
  2593. margin: 0;
  2594. border: none;
  2595. padding-bottom: 2rem;
  2596. padding-top: 0.9rem;
  2597. display: inline-flex;
  2598. }
  2599. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site ul.links::after {
  2600. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  2601. padding-left: 0.5rem;
  2602. }
  2603. .block-page-title-block {
  2604. padding-left: 1rem;
  2605. }
  2606. .block-page-title-block h1 {
  2607. font-weight: 1000;
  2608. }
  2609. .block-views-blockactus-block-1 {
  2610. background-color: white;
  2611. padding-bottom: 3rem;
  2612. }
  2613. .block-views-blockactus-block-1 h2 {
  2614. width: 80%;
  2615. font-size: 2rem;
  2616. font-weight: 900;
  2617. margin-left: 10%;
  2618. padding-top: 1rem;
  2619. text-align: center;
  2620. margin-bottom: 4rem;
  2621. }
  2622. .block-views-blockactus-block-1 .view-id-actus {
  2623. width: 100%;
  2624. margin: auto;
  2625. }
  2626. .block-views-blockactus-block-1 .view-id-actus .views-row {
  2627. width: 30vw !important;
  2628. margin-left: 1rem;
  2629. }
  2630. @media (max-width: 1200px) {
  2631. .block-views-blockactus-block-1 .view-id-actus .views-row {
  2632. width: 50vw !important;
  2633. }
  2634. }
  2635. .block-views-blockactus-block-1 .view-id-actus .views-row:first-of-type {
  2636. padding-left: 15%;
  2637. }
  2638. @media (max-width: 1200px) {
  2639. .block-views-blockactus-block-1 .view-id-actus .views-row:first-of-type {
  2640. padding-left: 16%;
  2641. }
  2642. }
  2643. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite {
  2644. width: 100%;
  2645. height: 100%;
  2646. }
  2647. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu {
  2648. display: flex;
  2649. flex-direction: column;
  2650. }
  2651. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu p.field__item {
  2652. display: none;
  2653. }
  2654. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite {
  2655. width: 75%;
  2656. height: 250px;
  2657. right: 10%;
  2658. position: relative;
  2659. }
  2660. @media (max-width: 1200px) {
  2661. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite {
  2662. max-height: 150px;
  2663. }
  2664. }
  2665. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite .field--name-field-image {
  2666. height: 100%;
  2667. }
  2668. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite .field--name-field-image .field__items {
  2669. height: 100%;
  2670. }
  2671. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite .field--name-field-image .field__items .field__item {
  2672. width: 100%;
  2673. height: 100%;
  2674. }
  2675. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite .field--name-field-image .field__items .field__item img {
  2676. width: 100%;
  2677. height: auto;
  2678. object-fit: cover;
  2679. height: 100%;
  2680. }
  2681. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content {
  2682. height: fit-content;
  2683. width: 100%;
  2684. }
  2685. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content h1 {
  2686. display: none;
  2687. }
  2688. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content h2 {
  2689. width: 100% !important;
  2690. margin-left: 0;
  2691. padding-top: 0.5rem;
  2692. font-weight: 600;
  2693. font-size: 1.3rem;
  2694. text-align: left !important;
  2695. }
  2696. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content .field--name-field-sous-titre {
  2697. padding-top: 0 rem;
  2698. font-size: 1.2rem;
  2699. }
  2700. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content .field--name-field-date {
  2701. padding-top: 0.5rem;
  2702. }
  2703. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .body-content {
  2704. display: none;
  2705. }
  2706. .block-views-blockactus-block-1 .view-id-actus .slick-dots {
  2707. position: relative;
  2708. bottom: 0;
  2709. }
  2710. .block-views-blockactus-block-1 .view-id-actus .slick-prev {
  2711. left: 35px;
  2712. }
  2713. .block-views-blockactus-block-1 .view-id-actus .slick-next {
  2714. left: 90vw;
  2715. }
  2716. @media (max-width: 1400px) {
  2717. .block-views-blockactus-block-1 .view-id-actus .slick-prev {
  2718. left: 0vw;
  2719. }
  2720. .block-views-blockactus-block-1 .view-id-actus .slick-next {
  2721. left: 85vw;
  2722. }
  2723. }
  2724. .page--home .home-page-layout-content .block-views-blockhome-block-1 .view-display-id-block_1 {
  2725. width: 60%;
  2726. margin: auto;
  2727. padding-top: 3rem;
  2728. overflow: hidden;
  2729. text-overflow: ellipsis;
  2730. font-size: 1.3rem;
  2731. /* Masquer tous les paragraphes après le premier */
  2732. }
  2733. @media (max-width: 891px) {
  2734. .page--home .home-page-layout-content .block-views-blockhome-block-1 .view-display-id-block_1 {
  2735. width: 80%;
  2736. padding-top: 3rem;
  2737. }
  2738. }
  2739. .page--home .home-page-layout-content .block-views-blockhome-block-1 .view-display-id-block_1 .field-content p:nth-of-type(n+2), .page--home .home-page-layout-content .block-views-blockhome-block-1 .view-display-id-block_1 h3, .page--home .home-page-layout-content .block-views-blockhome-block-1 .view-display-id-block_1 ul {
  2740. display: none;
  2741. }
  2742. .page--home .home-page-layout-content .block-block-content793e5016-2b96-4802-9f38-1cd3768775b5 {
  2743. width: fit-content;
  2744. margin: auto;
  2745. z-index: 99;
  2746. position: relative;
  2747. margin-top: 2rem;
  2748. margin-bottom: 4rem;
  2749. }
  2750. .page--home .home-page-layout-content .block-block-content793e5016-2b96-4802-9f38-1cd3768775b5 .field--type-link {
  2751. padding-left: 0.5rem;
  2752. padding-right: 0.3rem;
  2753. padding-bottom: 0.3rem;
  2754. padding-top: 0.3rem;
  2755. }
  2756. .page--home .home-page-layout-content .block-block-content793e5016-2b96-4802-9f38-1cd3768775b5 .field--type-link .field__item::after {
  2757. content: url("../dist/images/noun-arrow-1569918-black.svg");
  2758. }
  2759. .page-programme .layout__region--first {
  2760. position: relative;
  2761. }
  2762. .page-programme .layout__region--first .block-region-first {
  2763. padding-left: 3rem;
  2764. display: flex;
  2765. justify-content: flex-end;
  2766. position: fixed;
  2767. top: 10rem;
  2768. }
  2769. .page-programme .layout__region--first .block-region-first > .block-block-content {
  2770. width: 100%;
  2771. }
  2772. .page-programme .layout__region--first .block-region-first > .block-block-content ul {
  2773. padding-left: 0;
  2774. padding-right: 30%;
  2775. }
  2776. .page-programme .layout__region--first .block-region-first > .block-block-content ul li a {
  2777. display: flex;
  2778. flex-direction: column;
  2779. padding-bottom: 0.6rem;
  2780. padding-top: 0.6rem;
  2781. }
  2782. .page-programme .layout__region--first .block-region-first > .block-block-content ul li a::after {
  2783. content: "";
  2784. width: 25%;
  2785. margin-top: 0.6rem;
  2786. border-bottom: #fdc300 solid 1px;
  2787. }
  2788. .page-programme .layout__region--first .block-region-first > .block-block-content ul li a:hover, .page-programme .layout__region--first .block-region-first > .block-block-content ul li a.active {
  2789. font-weight: 800;
  2790. }
  2791. .page-programme .layout__region--first .block-region-first > .block-block-content ul li a:hover::after, .page-programme .layout__region--first .block-region-first > .block-block-content ul li a.active::after {
  2792. content: "";
  2793. width: 25%;
  2794. margin-top: 0.6rem;
  2795. border-bottom: #fdc300 solid 2px;
  2796. }
  2797. .page-programme .block-region-second h2 {
  2798. font-weight: 1000;
  2799. font-size: 1.8rem;
  2800. }
  2801. .page-programme .block-region-second .block-views-blockhome-block-1 {
  2802. width: 80%;
  2803. font-size: 1.2rem;
  2804. }
  2805. .page-programme .block-region-second .view-display-id-block_1 {
  2806. margin: 0;
  2807. width: 80%;
  2808. padding-top: 1rem;
  2809. }
  2810. .page-programme .block-region-second .block-config-pages-block {
  2811. margin: 0;
  2812. width: 80%;
  2813. padding-top: 1rem;
  2814. }
  2815. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire {
  2816. width: 100%;
  2817. padding-bottom: 3rem;
  2818. height: 205px;
  2819. display: flex;
  2820. flex-direction: column;
  2821. flex-wrap: wrap;
  2822. justify-content: center;
  2823. align-content: baseline;
  2824. }
  2825. @media (max-width: 810px) {
  2826. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire {
  2827. display: flex;
  2828. flex-direction: column;
  2829. }
  2830. }
  2831. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .paragraph--type--partenaire > * {
  2832. flex: 1 1 80px;
  2833. }
  2834. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .field--name-field-logo {
  2835. width: fit-content;
  2836. padding-right: 1rem;
  2837. }
  2838. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .field--name-field-nom {
  2839. font-weight: 900;
  2840. font-size: 1.2rem;
  2841. }
  2842. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .field--name-field-texte .field__item p strong {
  2843. background-color: none;
  2844. }
  2845. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .field--name-field-lien {
  2846. background-color: none;
  2847. }
  2848. .page-node-site .block-region-first .block-entity-fieldnodefield-fichiers {
  2849. width: 80%;
  2850. margin: auto;
  2851. }
  2852. .page-node-site .region-content {
  2853. display: grid;
  2854. grid-template-columns: repeat(8 1fr);
  2855. grid-template-rows: repeat(3 auto);
  2856. }
  2857. .page-node-site .region-content #block-reha-prevnextblock {
  2858. display: flex;
  2859. flex-direction: row;
  2860. width: 70%;
  2861. grid-column: 1/span 8;
  2862. grid-row: 1;
  2863. z-index: 97;
  2864. height: fit-content;
  2865. justify-content: space-between;
  2866. margin: auto;
  2867. }
  2868. .page-node-site .region-content #block-reha-prevnextblock .next-site {
  2869. border: none;
  2870. padding: 0.5rem 1rem;
  2871. margin-left: auto;
  2872. }
  2873. .page-node-site .region-content #block-reha-prevnextblock .next-site ::after {
  2874. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  2875. padding-left: 0.5rem;
  2876. padding-top: 0.1rem;
  2877. }
  2878. .page-node-site .region-content #block-reha-prevnextblock .prev-site {
  2879. border: none;
  2880. padding: 0.5rem 1rem;
  2881. }
  2882. .page-node-site .region-content #block-reha-prevnextblock .prev-site ::before {
  2883. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  2884. display: inline-block;
  2885. transform: rotate(180deg);
  2886. padding-left: 0.5rem;
  2887. }
  2888. .page-node-site .region-content #block-reha-titredepage {
  2889. display: none;
  2890. }
  2891. .page-node-site .region-content #block-reha-contenudelapageprincipale {
  2892. padding-top: 2rem;
  2893. padding-bottom: 3rem;
  2894. grid-column: 1/span 8;
  2895. grid-row: 2;
  2896. }
  2897. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site {
  2898. margin: auto;
  2899. display: flex;
  2900. flex-direction: column;
  2901. }
  2902. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site {
  2903. background-color: white;
  2904. height: 520px;
  2905. width: fit-content;
  2906. display: flex;
  2907. flex-direction: row;
  2908. margin: auto;
  2909. }
  2910. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site {
  2911. height: 520px;
  2912. width: 771px;
  2913. order: 1;
  2914. }
  2915. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image {
  2916. width: 100%;
  2917. margin: auto;
  2918. }
  2919. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-dots {
  2920. z-index: 999;
  2921. bottom: -40px;
  2922. }
  2923. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list {
  2924. padding: 0 !important;
  2925. }
  2926. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list .field__item {
  2927. display: flex;
  2928. flex-direction: column;
  2929. align-items: flex-start;
  2930. }
  2931. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list .field__item img {
  2932. height: 520px;
  2933. width: auto;
  2934. object-fit: contain;
  2935. }
  2936. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list .field__item blockquote {
  2937. font-style: italic;
  2938. margin: 0;
  2939. padding-top: 0.5rem;
  2940. font-size: 0.8rem;
  2941. }
  2942. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list .field__item blockquote p {
  2943. margin: 0;
  2944. }
  2945. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site {
  2946. background-color: rgb(255, 255, 255);
  2947. width: 20vw;
  2948. order: 2;
  2949. display: flex;
  2950. flex-direction: column;
  2951. margin: auto;
  2952. padding: 1rem;
  2953. z-index: 99;
  2954. position: relative;
  2955. justify-content: center;
  2956. }
  2957. @media (max-width: 891px) {
  2958. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site {
  2959. width: auto;
  2960. }
  2961. }
  2962. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site h1 {
  2963. order: 3;
  2964. margin: 0;
  2965. font-size: 1.8rem;
  2966. font-weight: 900;
  2967. }
  2968. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site h2 {
  2969. order: 3;
  2970. margin: 0;
  2971. font-size: 1.3rem;
  2972. font-weight: 900;
  2973. }
  2974. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row {
  2975. order: 1;
  2976. display: flex;
  2977. flex-direction: row;
  2978. align-items: end;
  2979. padding-bottom: 0.5rem;
  2980. }
  2981. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site {
  2982. order: 1;
  2983. text-transform: uppercase;
  2984. font-size: 1rem;
  2985. display: inline-flex;
  2986. }
  2987. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site::after {
  2988. content: "|";
  2989. padding-left: 1rem;
  2990. padding-right: 1rem;
  2991. }
  2992. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site {
  2993. order: 3;
  2994. font-size: 1.2rem;
  2995. }
  2996. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .field__item {
  2997. display: flex;
  2998. }
  2999. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address {
  3000. margin: 0;
  3001. display: inline-flex;
  3002. }
  3003. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .postal-code {
  3004. order: 2;
  3005. }
  3006. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .locality {
  3007. order: 1;
  3008. text-transform: capitalize;
  3009. margin-right: 0.5rem;
  3010. }
  3011. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .country {
  3012. display: none;
  3013. }
  3014. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-date-de-construction {
  3015. order: 5;
  3016. font-size: 1.2rem;
  3017. }
  3018. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-architecte {
  3019. order: 4;
  3020. padding-top: 0.5rem;
  3021. font-size: 1.2rem;
  3022. }
  3023. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items {
  3024. display: flex;
  3025. flex-direction: row;
  3026. flex-wrap: wrap;
  3027. }
  3028. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items .field__item {
  3029. display: inline;
  3030. }
  3031. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items .field__item::after {
  3032. content: ",";
  3033. padding-right: 0.5rem;
  3034. }
  3035. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__item:last-of-type::after {
  3036. content: "";
  3037. }
  3038. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site ul.links {
  3039. order: 5;
  3040. text-transform: uppercase;
  3041. padding: 0;
  3042. margin: 0;
  3043. border: none;
  3044. padding-bottom: 2rem;
  3045. padding-top: 0.9rem;
  3046. display: inline-flex;
  3047. }
  3048. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site ul.links::after {
  3049. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  3050. padding-left: 0.5rem;
  3051. }
  3052. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site {
  3053. order: 3;
  3054. padding-top: 6rem;
  3055. position: relative;
  3056. width: 70%;
  3057. margin: auto;
  3058. font-size: 1.3rem;
  3059. display: flex;
  3060. flex-direction: row-reverse;
  3061. justify-content: space-between;
  3062. }
  3063. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .summary-content {
  3064. width: 75%;
  3065. }
  3066. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content {
  3067. width: 15%;
  3068. margin-top: 1.5rem;
  3069. }
  3070. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content .field--type-file {
  3071. border: none;
  3072. margin-bottom: 1rem;
  3073. background-color: transparent;
  3074. }
  3075. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content .field__item {
  3076. padding: 0.5rem;
  3077. border: solid black 1px;
  3078. margin-bottom: 1rem;
  3079. background-color: rgb(255, 255, 255);
  3080. font-size: 0.9rem;
  3081. }
  3082. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content .field__item > * {
  3083. text-transform: uppercase;
  3084. }
  3085. .page-ressources h1 {
  3086. width: 80%;
  3087. margin: auto;
  3088. font-weight: 1000;
  3089. }
  3090. .page-ressources .view-ressources {
  3091. display: flex;
  3092. flex-direction: row;
  3093. flex-wrap: wrap;
  3094. justify-content: space-between;
  3095. padding: 2rem;
  3096. width: 80%;
  3097. margin: auto;
  3098. }
  3099. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 {
  3100. width: 100%;
  3101. margin: auto;
  3102. display: grid;
  3103. grid-template-columns: repeat(8, 1fr);
  3104. grid-template-rows: repeat(3, 1fr);
  3105. padding: 1rem;
  3106. height: fit-content;
  3107. max-height: 17rem;
  3108. padding-bottom: 5rem;
  3109. }
  3110. .page-ressources .view-ressources #views-exposed-form-ressources-page-1::before {
  3111. content: "FILTRER :";
  3112. grid-column: 1;
  3113. grid-row: 1;
  3114. display: block;
  3115. line-height: 5;
  3116. }
  3117. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item, .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-actions {
  3118. padding-bottom: 0.5rem;
  3119. align-self: end;
  3120. }
  3121. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item-combine {
  3122. grid-column: 1/span 8;
  3123. grid-row: 2;
  3124. }
  3125. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .js-form-item-field-site-target-id {
  3126. grid-column: 1/span 4;
  3127. grid-row: 3;
  3128. width: 45%;
  3129. }
  3130. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item-field-themes-target-id {
  3131. grid-column: 3/span 4;
  3132. grid-row: 3;
  3133. width: 45%;
  3134. }
  3135. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item-field-type-de-ressource-target-id {
  3136. width: 45%;
  3137. grid-column: 5/span 6;
  3138. grid-row: 3;
  3139. }
  3140. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-select {
  3141. background: white;
  3142. border: solid gray 1px;
  3143. height: 2.5rem;
  3144. padding-left: 1rem;
  3145. padding-right: 1rem;
  3146. }
  3147. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 #edit-actions {
  3148. grid-column: 7/span 8;
  3149. grid-row: 3;
  3150. height: 2.5rem;
  3151. }
  3152. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 #edit-actions .form-submit {
  3153. margin: 0;
  3154. height: 2.5rem;
  3155. }
  3156. .page-ressources .view-ressources article {
  3157. padding-bottom: 0 !important;
  3158. }
  3159. .page-ressources .view-ressources .views-row {
  3160. width: 30%;
  3161. display: flex !important;
  3162. flex-direction: column;
  3163. background-color: rgb(255, 255, 255);
  3164. margin-bottom: 6rem;
  3165. }
  3166. .page-ressources .view-ressources .views-row:hover {
  3167. transform: scale(1.05);
  3168. transition: 0.3s transform ease, 0.3s box-shadow ease;
  3169. }
  3170. .page-ressources .view-ressources .views-row .node-type-ressource {
  3171. width: 100%;
  3172. display: flex !important;
  3173. flex-direction: column-reverse;
  3174. padding-top: 0;
  3175. }
  3176. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource {
  3177. order: 1;
  3178. width: 100%;
  3179. margin: auto;
  3180. margin-left: auto;
  3181. height: 15rem;
  3182. margin-left: 0;
  3183. }
  3184. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource .field--name-field-image {
  3185. height: 100%;
  3186. }
  3187. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource .field--name-field-image .field__items {
  3188. height: 100%;
  3189. }
  3190. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource .field--name-field-image .field__items .field__item {
  3191. height: 100%;
  3192. }
  3193. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource .field--name-field-image .field__items .field__item img {
  3194. height: 100%;
  3195. object-fit: cover;
  3196. max-width: 100%;
  3197. width: 100% !important;
  3198. }
  3199. .page-ressources .view-ressources .views-row .node-type-ressource .body-content {
  3200. display: none;
  3201. }
  3202. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content {
  3203. display: flex;
  3204. flex-direction: column;
  3205. background-color: transparent !important;
  3206. right: 0;
  3207. margin-bottom: 0;
  3208. border: none;
  3209. margin-left: 0 !important;
  3210. width: auto;
  3211. }
  3212. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content h1 {
  3213. display: none;
  3214. }
  3215. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content h2 {
  3216. order: 2;
  3217. margin: 0;
  3218. font-size: 1.2rem;
  3219. font-weight: 500;
  3220. line-height: 1.8rem;
  3221. }
  3222. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-sous-titre {
  3223. order: 3;
  3224. font-size: 1rem;
  3225. padding-top: 0.3rem;
  3226. }
  3227. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-auteur {
  3228. order: 4;
  3229. font-weight: 900;
  3230. padding-top: 0.5rem;
  3231. padding-bottom: 1rem;
  3232. font-size: 0.8rem;
  3233. }
  3234. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-type-de-ressource {
  3235. order: 1;
  3236. text-transform: uppercase;
  3237. font-size: 0.7rem;
  3238. }
  3239. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-type-de-ressource a {
  3240. pointer-events: none;
  3241. }
  3242. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-site {
  3243. order: 5;
  3244. background-color: rgb(153, 147, 174);
  3245. color: white;
  3246. border-radius: 50px;
  3247. width: fit-content;
  3248. padding: 0.2rem 0.9rem;
  3249. margin-top: 1rem;
  3250. }
  3251. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-site .field__item {
  3252. display: inline;
  3253. }
  3254. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-site a {
  3255. color: white;
  3256. font-weight: 900;
  3257. font-size: 0.8rem;
  3258. vertical-align: top;
  3259. }
  3260. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content ul.links {
  3261. order: 6;
  3262. display: none;
  3263. }
  3264. .page-ressources .view-ressources .pagination {
  3265. width: 100%;
  3266. }
  3267. .node-type-ressource {
  3268. display: grid;
  3269. grid-template-columns: 1fr repeat(3, 1fr) 1fr;
  3270. grid-template-rows: repeat(2, auto);
  3271. padding-top: 3rem;
  3272. }
  3273. .node-type-ressource .image-ressource {
  3274. grid-row: 1;
  3275. grid-column: 2;
  3276. margin-right: 2rem;
  3277. }
  3278. .node-type-ressource .image-ressource img {
  3279. height: 400px;
  3280. width: auto;
  3281. }
  3282. .node-type-ressource .infos-content {
  3283. grid-row: 1;
  3284. grid-column: 3/span 4;
  3285. margin-left: 2rem;
  3286. border: none;
  3287. background-color: transparent;
  3288. }
  3289. .node-type-ressource .infos-content .field--name-field-type-de-ressource {
  3290. text-transform: uppercase;
  3291. font-size: 1rem;
  3292. order: 1;
  3293. }
  3294. .node-type-ressource .infos-content h1 {
  3295. order: 2;
  3296. font-size: 2rem;
  3297. font-weight: 400;
  3298. }
  3299. .node-type-ressource .infos-content .field--name-field-sous-titre {
  3300. font-size: 1.3rem;
  3301. order: 3;
  3302. }
  3303. .node-type-ressource .infos-content .field--name-field-auteur {
  3304. font-weight: 800;
  3305. font-size: 1.3rem;
  3306. order: 4;
  3307. padding-top: 1rem;
  3308. }
  3309. .node-type-ressource .infos-content .field--name-field-site {
  3310. background-color: rgb(153, 147, 174);
  3311. border-radius: 50px;
  3312. width: fit-content;
  3313. padding: 0.2rem 0.9rem;
  3314. margin-top: 1rem;
  3315. order: 5;
  3316. }
  3317. .node-type-ressource .infos-content .field--name-field-site a {
  3318. color: white;
  3319. font-weight: 900;
  3320. font-size: 0.8rem;
  3321. vertical-align: top;
  3322. }
  3323. .node-type-ressource .body-content {
  3324. grid-row: 2;
  3325. grid-column: 2/span 3;
  3326. width: 100%;
  3327. margin-top: 2rem;
  3328. }
  3329. .node-type-ressource .body-content .field--name-field-fichiers {
  3330. width: fit-content;
  3331. }
  3332. .node-type-ressource .body-content .links-content {
  3333. margin-top: 2rem;
  3334. position: relative;
  3335. left: -10%;
  3336. width: 25%;
  3337. }
  3338. .page-actualites .block-page-title-block {
  3339. width: 75%;
  3340. margin: auto;
  3341. }
  3342. .page-actualites .view-actus {
  3343. padding-top: 3rem;
  3344. padding-bottom: 6rem;
  3345. width: 80%;
  3346. margin: auto;
  3347. display: flex;
  3348. flex-direction: row;
  3349. flex-wrap: wrap;
  3350. align-items: baseline;
  3351. justify-content: space-between;
  3352. }
  3353. @media (max-width: 891px) {
  3354. .page-actualites .view-actus {
  3355. flex-direction: column;
  3356. width: 100%;
  3357. }
  3358. }
  3359. .page-actualites .view-actus .views-row {
  3360. width: 28%;
  3361. padding: 1rem;
  3362. }
  3363. @media (max-width: 891px) {
  3364. .page-actualites .view-actus .views-row {
  3365. width: 95%;
  3366. margin: auto;
  3367. padding: 0;
  3368. }
  3369. }
  3370. .page-actualites .view-actus .views-row:hover {
  3371. transform: scale(1.05);
  3372. transition: 0.3s transform ease, 0.3s box-shadow ease;
  3373. }
  3374. .page-actualites .view-actus .views-row .node-type-actualite {
  3375. width: 30vw !important;
  3376. }
  3377. @media (max-width: 891px) {
  3378. .page-actualites .view-actus .views-row .node-type-actualite {
  3379. width: 100% !important;
  3380. }
  3381. }
  3382. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu {
  3383. flex-direction: column;
  3384. }
  3385. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .image-actualite {
  3386. width: 90%;
  3387. margin: auto;
  3388. }
  3389. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .image-actualite img {
  3390. width: 100%;
  3391. height: 15rem;
  3392. object-fit: cover;
  3393. }
  3394. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content {
  3395. height: fit-content;
  3396. width: 100%;
  3397. margin: auto;
  3398. top: -0.5rem;
  3399. }
  3400. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content h1 {
  3401. display: none;
  3402. }
  3403. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content h2 {
  3404. margin-left: 0;
  3405. padding-top: 0.2rem;
  3406. font-weight: 600;
  3407. }
  3408. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content .field--name-field-sous-titre {
  3409. padding-top: 0 rem;
  3410. font-size: 1.2rem;
  3411. }
  3412. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content .field--name-field-date {
  3413. padding-top: 0.2rem;
  3414. }
  3415. .node-type-actualite {
  3416. width: 100vw;
  3417. }
  3418. .node-type-actualite .entete_actu {
  3419. display: flex;
  3420. flex-direction: row;
  3421. width: 75%;
  3422. margin: auto;
  3423. align-items: center;
  3424. }
  3425. @media (max-width: 891px) {
  3426. .node-type-actualite .entete_actu {
  3427. flex-direction: column;
  3428. width: 100%;
  3429. }
  3430. }
  3431. .node-type-actualite .entete_actu .image-actualite {
  3432. width: 50%;
  3433. height: 100%;
  3434. }
  3435. @media (max-width: 900px) {
  3436. .node-type-actualite .entete_actu .image-actualite {
  3437. width: 80%;
  3438. height: 100% !important;
  3439. }
  3440. }
  3441. .node-type-actualite .entete_actu .image-actualite img {
  3442. width: 100%;
  3443. height: auto;
  3444. object-fit: contain;
  3445. }
  3446. .node-type-actualite .entete_actu .infos-content {
  3447. width: 30%;
  3448. right: 5%;
  3449. }
  3450. @media (max-width: 900px) {
  3451. .node-type-actualite .entete_actu .infos-content {
  3452. width: 50%;
  3453. height: fit-content;
  3454. }
  3455. .node-type-actualite .entete_actu .infos-content h1 {
  3456. font-size: 1.2rem;
  3457. }
  3458. .node-type-actualite .entete_actu .infos-content .field--name-field-sous-titre {
  3459. font-size: 1rem;
  3460. }
  3461. .node-type-actualite .entete_actu .infos-content .field--name-field-site .field__item {
  3462. font-size: 0.7rem;
  3463. }
  3464. .node-type-actualite .entete_actu .infos-content .field--name-field-date {
  3465. font-size: 0.6rem;
  3466. }
  3467. }
  3468. .node-type-actualite .body-content .summary-content {
  3469. width: 60%;
  3470. margin: auto;
  3471. }
  3472. @media (max-width: 891px) {
  3473. .node-type-actualite .body-content .summary-content {
  3474. width: 80%;
  3475. }
  3476. }
  3477. .node-type-actualite .body-content .links-content {
  3478. width: 15%;
  3479. margin-left: 12.5%;
  3480. }
  3481. @media (max-width: 891px) {
  3482. .node-type-actualite .body-content .links-content {
  3483. width: 80%;
  3484. }
  3485. .node-type-actualite .body-content .links-content .field--name-field-fichiers {
  3486. width: fit-content;
  3487. }
  3488. }
  3489. .page-mon-espace-de-travail {
  3490. /* On cache le texte mais on le garde accessible */
  3491. /* On crée l’icône "i" */
  3492. /* Tooltip : on réaffiche le vrai texte stocké */
  3493. /* Affichage au survol */
  3494. }
  3495. .page-mon-espace-de-travail .layout-content {
  3496. padding-bottom: 3rem;
  3497. width: 80%;
  3498. margin-left: 8%;
  3499. }
  3500. .page-mon-espace-de-travail .layout-content #block-reha-titredepage {
  3501. text-align: center;
  3502. }
  3503. .page-mon-espace-de-travail .layout-content .field--type-file {
  3504. background-color: transparent;
  3505. border: none;
  3506. }
  3507. .page-mon-espace-de-travail .layout-content .js-form-type-textfield {
  3508. flex-direction: row;
  3509. align-content: center;
  3510. }
  3511. .page-mon-espace-de-travail .layout-content .js-form-type-textfield label {
  3512. margin-right: 1rem;
  3513. }
  3514. .page-mon-espace-de-travail .description {
  3515. font-style: italic;
  3516. text-transform: none;
  3517. }
  3518. .page-mon-espace-de-travail .paragraph-top .paragraph-type {
  3519. display: none;
  3520. }
  3521. .page-mon-espace-de-travail summary {
  3522. text-transform: none;
  3523. font-weight: 800;
  3524. font-size: 1.2rem;
  3525. }
  3526. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-wrapper,
  3527. .page-mon-espace-de-travail #edit-field-dossier-evenement-wrapper {
  3528. border-top: solid 1px black;
  3529. margin-top: 2rem;
  3530. }
  3531. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-wrapper h4,
  3532. .page-mon-espace-de-travail #edit-field-dossier-evenement-wrapper h4 {
  3533. margin: 0;
  3534. margin-top: 2rem;
  3535. padding-left: 0;
  3536. }
  3537. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-wrapper #field-dossier-values--2,
  3538. .page-mon-espace-de-travail #edit-field-dossier-evenement-wrapper #field-dossier-values--2 {
  3539. padding-left: 4rem;
  3540. }
  3541. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-wrapper .field-multiple-drag,
  3542. .page-mon-espace-de-travail #edit-field-dossier-evenement-wrapper .field-multiple-drag {
  3543. border-left: solid black 1px;
  3544. }
  3545. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-0-subform-field-fichiers-table {
  3546. display: none;
  3547. }
  3548. .page-mon-espace-de-travail .paragraph-type--dossier {
  3549. background-color: white;
  3550. }
  3551. .page-mon-espace-de-travail .paragraph-type--dossier h4 {
  3552. display: none;
  3553. }
  3554. .page-mon-espace-de-travail .description {
  3555. position: relative;
  3556. display: inline-block;
  3557. color: transparent; /* rend le texte invisible */
  3558. font-size: 0; /* supprime l'espace du texte */
  3559. }
  3560. .page-mon-espace-de-travail .description::before {
  3561. content: "i";
  3562. display: inline-block;
  3563. width: 20px;
  3564. height: 20px;
  3565. line-height: 20px;
  3566. border-radius: 50%;
  3567. background-color: #333;
  3568. color: #fff;
  3569. text-align: center;
  3570. font-weight: bold;
  3571. font-size: 14px;
  3572. cursor: pointer;
  3573. font-family: Arial, sans-serif;
  3574. }
  3575. .page-mon-espace-de-travail .description::after {
  3576. content: attr(data-text); /* On va injecter le texte via un attribut */
  3577. visibility: hidden;
  3578. opacity: 0;
  3579. width: 250px;
  3580. background-color: #333;
  3581. color: #fff;
  3582. text-align: left;
  3583. border-radius: 6px;
  3584. padding: 8px;
  3585. position: absolute;
  3586. z-index: 1;
  3587. top: 120%;
  3588. left: 50%;
  3589. transform: translateX(-50%);
  3590. transition: opacity 0.3s;
  3591. font-size: 13px;
  3592. line-height: 1.4;
  3593. pointer-events: none;
  3594. }
  3595. .page-mon-espace-de-travail .description:hover::after {
  3596. visibility: visible;
  3597. opacity: 1;
  3598. }
  3599. .page-mon-espace-de-travail .js-form-type-managed-file label:after {
  3600. content: " :";
  3601. }
  3602. .page-mon-espace-de-travail .paragraphs-add-wrapper {
  3603. text-transform: uppercase;
  3604. font-size: 0.9rem;
  3605. font-weight: 400;
  3606. }
  3607. @media (max-width: 891px) {
  3608. .page-mon-espace-de-travail .paragraphs-add-wrapper {
  3609. font-size: 1rem;
  3610. }
  3611. }
  3612. .page-mon-espace-de-travail .paragraphs-add-wrapper p {
  3613. margin: 0;
  3614. padding: 0.3rem;
  3615. }
  3616. .page-mon-espace-de-travail .paragraphs-add-wrapper :hover {
  3617. background-color: #fdc300;
  3618. }
  3619. .field--name-field-dossier-de-pilotage h4 ::after {
  3620. content: "";
  3621. border-top: solid 1px black;
  3622. }