_blog.scss 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493
  1. .gal{
  2. margin-left: 15%;
  3. .content_gal{
  4. width: 2.2%!important;
  5. &[aria-hidden="false"]{
  6. .title_gal{
  7. opacity: 1;
  8. right: 70px;
  9. transition: right 1s ease, opacity 1s ease;
  10. }
  11. }
  12. }
  13. .title_gal{
  14. position: absolute;
  15. right: 50px;
  16. max-width: 50%;
  17. background: $light-blue;
  18. padding: 25px;
  19. bottom: 20%;
  20. color: $white;
  21. opacity: 0;
  22. }
  23. }
  24. .cat{
  25. height: 50px;
  26. z-index: 999;
  27. margin: 20px 0;
  28. .btn-group{
  29. @include inlineflex();
  30. &:nth-of-type(1){
  31. label{
  32. margin-right: 20px;
  33. }
  34. }
  35. &:nth-of-type(2){
  36. float: right;
  37. }
  38. }
  39. label{
  40. padding: 10px;
  41. cursor: pointer;
  42. &.tous{
  43. border-top: 2px solid $green;
  44. border-bottom: 2px solid $green;
  45. }
  46. &.professionnels{
  47. border-top: 2px solid $red;
  48. border-bottom: 2px solid $red;
  49. }
  50. &.grand_public{
  51. border-top: 2px solid $light-blue;
  52. border-bottom: 2px solid $light-blue;
  53. }
  54. &.formations{
  55. border-top: 2px solid $grey;
  56. border-bottom: 2px solid $grey;
  57. }
  58. &.archive{
  59. border-top: 2px solid $dark-blue;
  60. border-bottom: 2px solid $dark-blue;
  61. }
  62. }
  63. input{
  64. visibility: hidden;
  65. position: absolute;
  66. }
  67. }
  68. .bandeau{
  69. width: 100%;
  70. height: auto;
  71. max-height: 500px;
  72. position: relative;
  73. overflow: hidden;
  74. &::before{
  75. position: absolute;
  76. display: block;
  77. content: ' ';
  78. background-image: url('/user/themes/lecampus/images/Trame-bleu2.svg');
  79. background-repeat: repeat;
  80. // background-position: center;
  81. // background-size: cover;
  82. width: 100%;
  83. height: 100%;
  84. top: 0;
  85. z-index: -1;
  86. }
  87. .img{
  88. width: 70%;
  89. margin: auto;
  90. }
  91. .title_gal{
  92. position: absolute;
  93. right: 25%;
  94. max-width: 50%;
  95. background: $light-blue;
  96. padding: 25px;
  97. top: 20vw;
  98. color: $white;
  99. p{
  100. font-family: now_alt_bold;
  101. font-size: 1.2rem;
  102. font-weight: 400;
  103. line-height: 2.2rem;
  104. }
  105. }
  106. }
  107. .container{
  108. & > .title{
  109. background: $red;
  110. border-radius: 30px;
  111. width: auto;
  112. float:left;
  113. padding: 10px 20px;
  114. color: white;
  115. }
  116. }
  117. .start{
  118. min-height: calc(100vh - 325px);
  119. &:not(#home){
  120. .entete{
  121. border-bottom: 10px solid $light-blue;
  122. }
  123. }
  124. }
  125. .start:not(#form){
  126. &#calendrier, &#archive, &#articles{
  127. width: 70%;
  128. margin: 40px auto 40px auto;
  129. .header-wrapper{
  130. .title{
  131. display: flex;
  132. h1{
  133. width: auto;
  134. margin-bottom: 20px;
  135. background: $red;
  136. border-radius: 30px;
  137. padding: 10px 20px;
  138. color: white;
  139. font-size: 1.2rem;
  140. }
  141. }
  142. }
  143. }
  144. &#event{
  145. margin: 40px auto 40px auto;
  146. .title{
  147. display: flex;
  148. h1{
  149. width: auto;
  150. margin-bottom: 20px;
  151. background: $red;
  152. border-radius: 30px;
  153. padding: 10px 20px;
  154. color: white;
  155. font-size: 1.2rem;
  156. }
  157. }
  158. }
  159. .body-wrapper{
  160. @include inlineflex();
  161. justify-content: center;
  162. width: 100%;
  163. position: relative;
  164. .card{
  165. width: calc( (100% / 3) - 27px);
  166. min-width: 200px;
  167. margin: 0 0 40px 0;
  168. max-width: 1200px;
  169. .card-header{
  170. position: relative;
  171. width: 100%;
  172. right: 0;
  173. text-align: right;
  174. &.professionnels{
  175. background-color: $red;
  176. }
  177. &.grand_public{
  178. background-color: $light-blue;
  179. }
  180. &.formations{
  181. background-color: $grey;
  182. }
  183. .publics{
  184. padding: 2.5px 10px;
  185. color: white;
  186. }
  187. }
  188. .card-body{
  189. padding: 15px;
  190. background-image: url('/user/themes/lecampus/images/Trame-bleu2.svg');
  191. // background-position: center;
  192. background-repeat: repeat;
  193. // background-size: cover;
  194. }
  195. }
  196. .event{
  197. width: 45%;
  198. .card-content{
  199. .reso{
  200. @include inlineflex;
  201. flex-wrap: nowrap;
  202. justify-content: space-between;
  203. & > div, & > a{
  204. margin-right: 15px;
  205. }
  206. a{
  207. display: block;
  208. margin-bottom: 10px;
  209. img{
  210. margin-left: 10px;
  211. width: 20px;
  212. }
  213. }
  214. }
  215. .txt{
  216. width: 80%;
  217. }
  218. }
  219. }
  220. }
  221. }
  222. #articles{
  223. .cat{
  224. label{
  225. &:not(.active){
  226. border: none;
  227. }
  228. &.active, &:hover{
  229. border-top: 1px solid #0093a3;
  230. border-bottom: 2px solid #b5cb3a;
  231. }
  232. }
  233. }
  234. .articles-listing{
  235. flex-direction: column;
  236. .card{
  237. width: 100%!important;
  238. & > a{
  239. display: grid;
  240. grid-template-columns: minmax(300px, 25%) minmax(400px, calc(75% - 40px)) ;
  241. grid-template-rows: 250px;
  242. grid-column-gap: 40px;
  243. position: relative;
  244. .card-image{
  245. grid-column-start: 1;
  246. grid-row-start: 1;
  247. object-fit: contain;
  248. overflow: hidden;
  249. display: inline-flex;
  250. justify-content: center;
  251. max-height: 250px;
  252. img{
  253. display: inline-block;
  254. width: 100%;
  255. height: 100%;
  256. object-fit: cover;
  257. }
  258. }
  259. .wrapper-content{
  260. grid-column-start: 2;
  261. grid-row-start: 1;
  262. background-image: url(/user/themes/lecampus/images/Trame-bleu2.svg);
  263. background-repeat: repeat;
  264. padding: 20px 20px;
  265. width: 100%;
  266. height: 100%;
  267. .wrapper-info{
  268. display: inline-flex;
  269. width: 100%;
  270. & > div{
  271. }
  272. .cat{
  273. margin:0 0 0 3px;
  274. height: inherit!important;
  275. width: auto!important;
  276. }
  277. }
  278. .readmore{
  279. float: right;
  280. }
  281. }
  282. }
  283. .card-content{
  284. overflow: hidden;
  285. height: 7.7rem;
  286. h2{
  287. font-size: 0.9rem;
  288. }
  289. }
  290. &:last-child{
  291. margin-bottom: 0;
  292. }
  293. }
  294. }
  295. }
  296. .paginations{
  297. max-width: 1200px;
  298. & > ul{
  299. & > li{
  300. border: none;
  301. & > span{
  302. &.active{
  303. &::after{
  304. content: " ";
  305. width: 100%;
  306. height: 5px;
  307. display: block;
  308. background: #b5cb3a;
  309. }
  310. }
  311. }
  312. span, a{
  313. padding: 4px 5px;
  314. }
  315. &:first-child{
  316. float: left;
  317. & > a, & > span{
  318. &::before{
  319. content: "<";
  320. margin-right: 10px;
  321. display: inline-block;
  322. transform: translateX(0px);
  323. transition: 0.3s transform ease;
  324. }
  325. }
  326. & > a{
  327. &:hover{
  328. &::before{
  329. transform: translateX(-3px);
  330. transition: 0.3s transform ease;
  331. }
  332. }
  333. }
  334. }
  335. &:last-child{
  336. float: right;
  337. & > a, & > span{
  338. &::after{
  339. content: ">";
  340. margin-left: 10px;
  341. display: inline-block;
  342. transform: translateX(0px);
  343. transition: 0.3s transform ease;
  344. }
  345. }
  346. & > a:hover{
  347. &::after{
  348. transform: translateX(3px);
  349. transition: 0.3s transform ease;
  350. }
  351. }
  352. }
  353. }
  354. }
  355. }
  356. .header-wrapper{
  357. .title{
  358. h2{
  359. width: auto;
  360. margin-bottom: 20px;
  361. background: $red;
  362. border-radius: 30px;
  363. width: auto;
  364. padding: 10px 20px;
  365. color: white;
  366. font-size: 1.2rem;
  367. width:115px;
  368. }
  369. }
  370. }
  371. .content{
  372. width: 50%;
  373. margin: 4rem auto;
  374. p{
  375. margin: 10px 0;
  376. }
  377. }
  378. .content_s{
  379. margin: auto!important;
  380. }
  381. .entete{
  382. @include inlineflex;
  383. padding: 20px;
  384. background-image: url('/user/themes/lecampus/images/Trame-bleu2.svg');
  385. // background-position: center;
  386. background-repeat: repeat;
  387. // background-size: cover;
  388. height: auto;
  389. border-top: 10px solid $green;
  390. width: 100%;
  391. .entete_c{
  392. @include inlineflex;
  393. flex-direction: column;
  394. text-align: center;
  395. width: 70%;
  396. margin: 50px auto;
  397. position: relative;
  398. h1{
  399. width: max-content;
  400. max-width: 100%;
  401. margin-bottom: 20px;
  402. background: $red;
  403. border-radius: 30px;
  404. padding: 10px 20px;
  405. }
  406. }
  407. }
  408. .body-wrapper{
  409. .content{
  410. h4{
  411. &:not(:first-of-type){
  412. border-top: 1px solid black;
  413. padding-top: 30px;
  414. margin: 30px 0 0 0;
  415. }
  416. }
  417. }
  418. .sub-content{
  419. border-top: 1px solid black;
  420. margin-bottom: 20px;
  421. margin-top: 20px;
  422. & > img{
  423. width: 33%;
  424. float: left;
  425. margin: 20px 10px 0px 0px;
  426. }
  427. }
  428. }
  429. #event{
  430. margin-bottom: 20px;
  431. .content{
  432. margin-top: 50px;
  433. h2{
  434. float: left;
  435. margin-right: 20px;
  436. }
  437. .reso{
  438. @include inlineflex;
  439. flex-wrap: nowrap;
  440. width: 50px;
  441. height: 25px;
  442. }
  443. }
  444. .sidebar{
  445. margin-top: 50px;
  446. }
  447. p{
  448. a{
  449. text-decoration: underline;
  450. }
  451. }
  452. }
  453. .sidebar{
  454. position: absolute;
  455. right: 0;
  456. width: 20%;
  457. margin: -55px auto 0 20px;
  458. h2{
  459. background: $red;
  460. border-radius: 100px;
  461. width: 100px;
  462. height: 100px;
  463. }
  464. .side-agenda{
  465. padding: 10px 20px 10px 0;
  466. &:not(:nth-of-type(1)){
  467. border-top: 1px solid $light-blue;
  468. &::before{
  469. content: " ";
  470. display: block;
  471. position: absolute;
  472. width: 5px;
  473. height: 5px;
  474. margin-top: -13px;
  475. border-radius: 10px;
  476. background: $light-blue;
  477. }
  478. }
  479. &:nth-of-type(3){
  480. margin-bottom: 10px;
  481. }
  482. }
  483. .side-all-agenda{
  484. background: white;
  485. width: auto;
  486. padding: 10px 20px;
  487. margin-bottom: 10px;
  488. float: left;
  489. border: 2px solid $red;
  490. border-radius: 30px;
  491. transition: background-color 0.3s ease;
  492. a{
  493. color: black;
  494. }
  495. &:hover{
  496. background-color: $red;
  497. transition: background-color 0.3s ease;
  498. a{
  499. color: white;
  500. }
  501. }
  502. }
  503. }
  504. #newsletter{
  505. padding: 20px 0;
  506. background: $light-blue;
  507. /* LOADER */
  508. .ml-form-embedSubmitLoad {
  509. display: inline-block;
  510. width: 20px;
  511. height: 20px;
  512. }
  513. .ml-form-embedSubmitLoad:after {
  514. content: " ";
  515. display: block;
  516. width: 11px;
  517. height: 11px;
  518. margin: 1px;
  519. border-radius: 50%;
  520. border: 4px solid #fff;
  521. border-color: #ffffff #ffffff #ffffff transparent;
  522. -webkit-animation: ml-form-embedSubmitLoad 1.2s linear infinite;
  523. animation: ml-form-embedSubmitLoad 1.2s linear infinite;
  524. }
  525. @-webkit-keyframes ml-form-embedSubmitLoad {
  526. 0% {
  527. -webkit-transform: rotate(0deg);
  528. transform: rotate(0deg);
  529. }
  530. 100% {
  531. -webkit-transform: rotate(360deg);
  532. transform: rotate(360deg);
  533. }
  534. }
  535. @keyframes ml-form-embedSubmitLoad {
  536. 0% {
  537. -webkit-transform: rotate(0deg);
  538. transform: rotate(0deg);
  539. }
  540. 100% {
  541. -webkit-transform: rotate(360deg);
  542. transform: rotate(360deg);
  543. }
  544. }
  545. #mlb2-985974.ml-form-embedContainer {
  546. box-sizing: border-box;
  547. display: table;
  548. height: 100%;
  549. margin: 0 auto;
  550. width: 100% !important;
  551. }
  552. #mlb2-985974.ml-form-embedContainer h4,
  553. #mlb2-985974.ml-form-embedContainer p,
  554. #mlb2-985974.ml-form-embedContainer span,
  555. #mlb2-985974.ml-form-embedContainer button {
  556. text-transform: none !important;
  557. letter-spacing: normal !important;
  558. }
  559. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper {
  560. display: inline-block !important;
  561. margin: 0;
  562. padding: 0;
  563. position: relative;
  564. }
  565. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
  566. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedDefault { width: 400px; }
  567. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedForm { width: 750px; }
  568. #mlb2-985974.ml-form-embedContainer .ml-form-align-left { text-align: left; }
  569. #mlb2-985974.ml-form-embedContainer .ml-form-align-center { text-align: center; }
  570. #mlb2-985974.ml-form-embedContainer .ml-form-align-default { display: table-cell !important; vertical-align: middle !important; text-align: center !important; }
  571. #mlb2-985974.ml-form-embedContainer .ml-form-align-right { text-align: right; }
  572. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {
  573. border-top-left-radius: 4px;
  574. border-top-right-radius: 4px;
  575. height: auto;
  576. width: 100%;
  577. }
  578. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
  579. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  580. // padding: 20px 20px 0 20px;
  581. }
  582. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
  583. padding-bottom: 0;
  584. justify-content: center;
  585. display: flex;
  586. border: 1px solid white;
  587. border-radius: 30px;
  588. overflow: hidden;
  589. }
  590. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
  591. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  592. width: 100%;
  593. }
  594. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent{
  595. color: white;
  596. p{
  597. color: white;
  598. text-align: center;
  599. font-family: $Regular;
  600. }
  601. }
  602. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent label {
  603. color: white;
  604. white-space:nowrap;
  605. padding: 0 20px;
  606. line-height: 40px;
  607. }
  608. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
  609. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  610. color: #000000;
  611. font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  612. font-size: 14px;
  613. font-weight: 400;
  614. margin: 0 0 10px 0;
  615. text-align: left;
  616. text-align: center;
  617. color: white;
  618. }
  619. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,
  620. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,
  621. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,
  622. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {
  623. color: #000000;
  624. font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  625. font-size: 14px;
  626. }
  627. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,
  628. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {
  629. color: #000000;
  630. text-decoration: underline;
  631. }
  632. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,
  633. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {
  634. margin: 0;
  635. }
  636. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
  637. margin: 0;
  638. width: 100%;
  639. }
  640. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
  641. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
  642. margin: 0 0 20px 0;
  643. width: 100%;
  644. }
  645. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {
  646. margin: 0;
  647. }
  648. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
  649. margin: 0 0 10px 0;
  650. width: 100%;
  651. }
  652. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {
  653. margin: 0;
  654. }
  655. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {
  656. margin: 0;
  657. }
  658. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  659. background-color: #ffffff !important;
  660. color: #333333 !important;
  661. border-color: #cccccc !important;
  662. border-radius: 4px !important;
  663. border-style: solid !important;
  664. border-width: 1px !important;
  665. font-size: 14px !important;
  666. line-height: 20px !important;
  667. padding: 10px 10px !important;
  668. width: 100% !important;
  669. box-sizing: border-box !important;
  670. max-width: 100% !important;
  671. }
  672. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder { color: #333333; }
  673. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder { color: #333333; }
  674. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder { color: #333333; }
  675. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder { color: #333333; }
  676. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {
  677. height: 40px;
  678. display: flex;
  679. }
  680. .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 100%; }
  681. .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal { width: auto; margin-left: -45px;}
  682. .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields { box-sizing: border-box; float: left; }
  683. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
  684. background-color: #ffffff;
  685. color: #333333;
  686. border-radius: 30px;
  687. border-style: solid;
  688. border-width: 0px;
  689. font-size: 14px;
  690. line-height: 20px;
  691. padding: 10px 10px;
  692. width: 100%;
  693. box-sizing: border-box;
  694. }
  695. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
  696. background-color: transparent;
  697. border-color: transparent;
  698. border-style: solid;
  699. box-shadow: none;
  700. color: black !important;
  701. font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  702. font-size: 14px !important;
  703. font-weight: 700;
  704. line-height: 20px;
  705. padding: 10px !important;
  706. width: 100%;
  707. }
  708. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type="checkbox"] {
  709. display: inline-block;
  710. float: left;
  711. margin: 1px 0 0 0;
  712. opacity: 1;
  713. visibility: visible;
  714. appearance: checkbox !important;
  715. -moz-appearance: checkbox !important;
  716. -webkit-appearance: checkbox !important;
  717. position: relative;
  718. height: 14px;
  719. width: 14px;
  720. }
  721. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {
  722. color: #000000;
  723. display: block;
  724. font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  725. font-size: 12px;
  726. text-align: left;
  727. padding-left: 25px;
  728. }
  729. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {
  730. font-weight: normal;
  731. margin: 0;
  732. padding: 0;
  733. }
  734. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {
  735. color: #000000;
  736. text-decoration: underline;
  737. }
  738. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {
  739. color: #000000 !important;
  740. font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
  741. font-size: 12px !important;
  742. font-weight: normal !important;
  743. line-height: 18px !important;
  744. padding: 0 !important;
  745. margin: 0 5px 0 0 !important;
  746. }
  747. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {
  748. margin: 0;
  749. }
  750. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  751. margin: 0 0 20px 0;
  752. }
  753. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  754. background-color: #000000 !important;
  755. border: none !important;
  756. border-radius: 4px !important;
  757. box-shadow: none !important;
  758. color: #ffffff !important;
  759. font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
  760. font-size: 14px !important;
  761. font-weight: 700 !important;
  762. line-height: 20px !important;
  763. padding: 10px !important;
  764. width: 100% !important;
  765. box-sizing: border-box !important;
  766. }
  767. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
  768. background-color: #333333 !important;
  769. }
  770. .ml-subscribe-close {
  771. width: 30px;
  772. height: 30px;
  773. background: url(https://bucket.mlcdn.com/images/default/modal_close.png) no-repeat;
  774. background-size: 30px;
  775. cursor: pointer;
  776. margin-top: -10px;
  777. margin-right: -10px;
  778. position: absolute;
  779. top: 0;
  780. right: 0;
  781. }
  782. .ml-error input {
  783. background: url(https://bucket.mlcdn.com/images/default/error-icon.png) 98% center no-repeat #ffffff !important;
  784. background-size: 24px 24px !important;
  785. }
  786. .ml-error .label-description {
  787. color: #ff0000 !important;
  788. }
  789. .ml-error .label-description p {
  790. color: #ff0000 !important;
  791. }
  792. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
  793. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {
  794. color: #ff0000 !important;
  795. }
  796. // @media only screen and (max-width: 400px){
  797. // .ml-form-embedWrapper.embedDefault, .ml-form-embedWrapper.embedPopup { width: 100%!important; }
  798. // .ml-form-formContent.horozintalForm { float: left!important; }
  799. // .ml-form-formContent.horozintalForm .ml-form-horizontalRow { height: auto!important; width: 100%!important; float: left!important; }
  800. // .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 100%!important; }
  801. // .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-right: 0px!important; padding-bottom: 10px; }
  802. // .ml-form-formContent.horozintalForm .ml-button-horizontal { width: 100%!important; }
  803. // }
  804. @media only screen and (max-width: 400px) {
  805. .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {
  806. margin-bottom: 10px !important;
  807. width: 100% !important;
  808. }
  809. }
  810. #mc_embed_signup{
  811. width: 600px;
  812. margin: auto;
  813. padding: 0 0 0 10px;
  814. border-radius: 100px;
  815. border: 1px solid $white;
  816. form{
  817. @include inlineflex();
  818. width: 100%;
  819. #mc_embed_signup_scroll{
  820. @include inlineflex();
  821. width: 100%;
  822. margin: auto;
  823. label{
  824. text-align: center;
  825. color: $white;
  826. margin-right: 10px;
  827. width: 260px;
  828. }
  829. &>input{
  830. width: 315px;
  831. padding-left: 20px;
  832. }
  833. input{
  834. border-radius: 30px;
  835. height: 31px;
  836. box-shadow: none;
  837. border: none;
  838. }
  839. .clear{
  840. input{
  841. background: $white;
  842. margin-left: -30px;
  843. }
  844. }
  845. }
  846. }
  847. }
  848. }
  849. #home{
  850. .content{
  851. // min-width: 800px;
  852. @include inlineflex();
  853. & > p{
  854. position: relative;
  855. width: calc(100% / 3);
  856. padding: 50px 20px;
  857. margin-top: 10px;
  858. img{
  859. position: absolute;
  860. width: auto;
  861. height: 50px;
  862. top: -20px;
  863. left: 50%;
  864. -webkit-transform: translate(-50%);
  865. transform: translate(-50%);
  866. }
  867. &:nth-of-type(n+4){
  868. width: calc(100% / 4);
  869. }
  870. &:last-child{
  871. width: auto!important;
  872. margin-top: 0!important;
  873. margin: auto;
  874. a{
  875. display: block;
  876. padding: 10px 20px;
  877. text-align: center;
  878. border: 2px solid $green;
  879. border-radius: 30px;
  880. margin: auto;
  881. transition: background-color 0.3s ease;
  882. }
  883. }
  884. }
  885. }
  886. }
  887. #item, #item-article{
  888. .item-wrapper{
  889. width: 45%;
  890. margin: auto;
  891. .title-wrapper{
  892. display: inline-flex;
  893. align-items: baseline;
  894. width: 100%;
  895. margin: 40px 0;
  896. .back{
  897. margin-right: 10px;
  898. margin-left: -80px;
  899. &::before{
  900. content: "<";
  901. display: inline-block;
  902. margin-right: 5px;
  903. }
  904. }
  905. .title{
  906. width: auto;
  907. margin: 0;
  908. h1{
  909. width: auto;
  910. padding: 10px 20px;
  911. border-radius: 30px;
  912. background: #9e0027;
  913. }
  914. }
  915. }
  916. .info-wrapper{
  917. display: inline-flex;
  918. width: 100%;
  919. flex-direction: column;
  920. align-items: flex-end;
  921. .date{
  922. width: 100%;
  923. background-image: url('/user/themes/lecampus/images/Trame-bleu2.svg');
  924. background-repeat: repeat;
  925. padding: 5px 10px;
  926. text-align: right;
  927. margin-bottom: 20px;
  928. }
  929. .reso{
  930. display: inline-flex;
  931. margin-bottom: 20px;
  932. a{
  933. display: inline-flex;
  934. margin: 0 0 0 10px;
  935. align-items: center;
  936. img{
  937. margin-left: 5px;
  938. width: 20px;
  939. height: auto;
  940. }
  941. }
  942. }
  943. }
  944. .body-wrapper{
  945. .card-image{
  946. width: 100%;
  947. }
  948. .card-content{
  949. margin: 40px 0;
  950. .txt{
  951. p{
  952. margin: 0 0 1.2rem 0;
  953. line-height: 1.5rem;
  954. }
  955. a{
  956. border-bottom: 1px solid $red;
  957. }
  958. h2{
  959. font-size: 1.2rem;
  960. font-family: $Bold;
  961. font-weight: normal;
  962. margin: 0;
  963. }
  964. ul{
  965. margin-bottom: 1.2rem;
  966. li{
  967. &::before{
  968. content: " ";
  969. width: 5px;
  970. height: 5px;
  971. border-radius: 10px;
  972. display: inline-block;
  973. vertical-align: middle;
  974. background: $red;
  975. margin-right: 5px;
  976. }
  977. }
  978. }
  979. }
  980. }
  981. }
  982. }
  983. }
  984. #item, #item-article{
  985. .content{
  986. @include inlineflex;
  987. .images_s{
  988. // width: calc(100% / 2 - 15px);
  989. width: 40%;
  990. align-self: center;
  991. // min-width: 300px;
  992. margin-right: 15px;
  993. img{
  994. margin-bottom: 15px;
  995. }
  996. }
  997. .content_s{
  998. width: calc(60% - 30px);
  999. }
  1000. .icones{
  1001. margin: 70px 0;
  1002. @include inlineflex;
  1003. justify-content: space-around;
  1004. width: 100%;
  1005. .icon{
  1006. height: 50px;
  1007. width: auto;
  1008. max-width: 200px;
  1009. img{
  1010. height: 50px;
  1011. width: 100%;
  1012. }
  1013. p{
  1014. text-align: center;
  1015. }
  1016. }
  1017. }
  1018. }
  1019. }
  1020. #devis{
  1021. @include inlineflex();
  1022. justify-content: center;
  1023. align-items: center;
  1024. background-image: url('/user/themes/lecampus/images/Trame-bleu2.svg');
  1025. background-repeat: repeat;
  1026. width: 100%;
  1027. // height: 300px;
  1028. .title{
  1029. visibility: hidden;
  1030. width: 200px;
  1031. height: 200px;
  1032. background: $red;
  1033. border-radius: 200px;
  1034. -webkit-transform: translateX(80px);
  1035. transform: translateX(80px);
  1036. h4{
  1037. text-align: center;
  1038. color: white;
  1039. margin: 50% 10px 0 10px;
  1040. -webkit-transform: translateY(-50%);
  1041. transform: translateY(-50%);
  1042. }
  1043. }
  1044. .txt{
  1045. @include inlineflex();
  1046. background: white;
  1047. width: 25%;
  1048. margin-right: 20px;
  1049. height: auto;
  1050. p{
  1051. padding: 20px 20px 20px 20px;
  1052. color: black;
  1053. text-align: left;
  1054. strong{
  1055. font-size: 1.3rem;
  1056. }
  1057. }
  1058. }
  1059. .demander-votre-devis{
  1060. margin-top: 0;
  1061. -webkit-transform: translate(50%, -125%);
  1062. transform: translate(50%, -125%);
  1063. }
  1064. .img{
  1065. width: 400px;
  1066. height: 300px;
  1067. position: relative;
  1068. .content-img{
  1069. width: auto;
  1070. height: auto;
  1071. overflow: hidden;
  1072. & > img{
  1073. width: 100%;
  1074. height: 100%;
  1075. }
  1076. }
  1077. }
  1078. }
  1079. #devis{
  1080. &.item, &.sublog, &.item-article, &.nos-offres ,&.nos-packs{
  1081. background: $red;
  1082. height: auto;
  1083. padding: 20px 0;
  1084. a{
  1085. color: white;
  1086. .title{
  1087. vertical-align: baseline;
  1088. border-radius: 30px;
  1089. border: 1px solid white;
  1090. padding: 5px 20px;
  1091. height: 35px;
  1092. width: auto;
  1093. -webkit-transform: translateX(0);
  1094. transform: translateX(0);
  1095. }
  1096. &:hover{
  1097. color: black;
  1098. .title{
  1099. background: white;
  1100. transition: background 0.3s ease;
  1101. }
  1102. }
  1103. }
  1104. }
  1105. }
  1106. // .bx-viewport{
  1107. // height: 30vw!important;
  1108. // }
  1109. #reco{
  1110. background: $dark-blue;
  1111. .title{
  1112. display: flex;
  1113. cursor: pointer;
  1114. width: 100%;
  1115. padding: 10px;
  1116. h2{
  1117. width: auto;
  1118. margin: auto;
  1119. color: white;
  1120. padding: 10px;
  1121. text-align: center;
  1122. border-top: 1px solid white;
  1123. border-bottom: 1px solid white;
  1124. font-size: 1rem;
  1125. &::after{
  1126. display: inline-flex;
  1127. margin-left: 10px;
  1128. content: " ";
  1129. background: url('../images/fleche-top.svg');
  1130. background-size: 15px 18px;
  1131. background-repeat: no-repeat;
  1132. width: 15px;
  1133. height: 18px;
  1134. }
  1135. }
  1136. &.open{
  1137. h2:after{
  1138. -webkit-transform: rotate(180deg);
  1139. transform: rotate(180deg);
  1140. }
  1141. }
  1142. }
  1143. .txt{
  1144. z-index: -1;
  1145. position: relative;
  1146. width: 100%;
  1147. display: none;
  1148. p{
  1149. color: white;
  1150. width: 300px;
  1151. a{
  1152. color: white;
  1153. text-decoration: underline;
  1154. }
  1155. }
  1156. &.open{
  1157. @include inlineflex;
  1158. justify-content: center;
  1159. padding-top: 20px;
  1160. z-index: 999;
  1161. background: $dark-blue;
  1162. .item{
  1163. display: block;
  1164. }
  1165. }
  1166. h3{
  1167. color: $green;
  1168. }
  1169. }
  1170. .item{
  1171. margin: 0 0px 20px 20px;
  1172. border-left: 1px solid white;
  1173. padding-left: 20px;
  1174. img{
  1175. width: 50px;
  1176. margin-bottom: 10px;
  1177. }
  1178. }
  1179. }
  1180. .content_s{
  1181. &.map{
  1182. width: 100%!important;
  1183. height: auto;
  1184. p{
  1185. &:last-child{
  1186. height: 500px;
  1187. }
  1188. }
  1189. a#carte{
  1190. display: block;
  1191. width: 100%;
  1192. height: 100%;
  1193. }
  1194. }
  1195. }
  1196. #event, #item, #item-article{
  1197. .title{
  1198. width: 45%;
  1199. margin: auto;
  1200. }
  1201. .head-event{
  1202. .tags{
  1203. width: 100%;
  1204. &.professionnels{
  1205. background-color: $red;
  1206. }
  1207. &.grand_public{
  1208. background-color: $light-blue;
  1209. }
  1210. &.formations{
  1211. background-color: $grey;
  1212. }
  1213. &.publics{
  1214. padding: 2.5px 10px;
  1215. color: white;
  1216. }
  1217. }
  1218. }
  1219. .card-header{
  1220. @include inlineflex;
  1221. flex-direction: column;
  1222. width: 100%;
  1223. &.professionnels{
  1224. background-color: $red;
  1225. }
  1226. &.grand_public{
  1227. background-color: $light-blue;
  1228. }
  1229. &.formations{
  1230. background-color: $grey;
  1231. }
  1232. .publics{
  1233. text-align: right;
  1234. &.publics{
  1235. padding: 2.5px 10px;
  1236. color: white;
  1237. }
  1238. }
  1239. }
  1240. .card-body{
  1241. padding: 15px;
  1242. background-image: url('/user/themes/lecampus/images/Trame-bleu2.svg');
  1243. // background-position: center;
  1244. background-repeat: repeat;
  1245. // background-size: cover;
  1246. }
  1247. .card-content{
  1248. margin-top: 20px;
  1249. }
  1250. }
  1251. .demander-votre-devis{
  1252. padding: 10px;
  1253. z-index: 999;
  1254. -webkit-transform: translate(0, -50%);
  1255. transform: translate(0, -50%);
  1256. background: $red;
  1257. position: absolute;
  1258. width: 200px;
  1259. height: 200px;
  1260. right: 5%;
  1261. color: white;
  1262. text-align: center;
  1263. strong{
  1264. font-weight: bold!important;
  1265. }
  1266. a{
  1267. color: white;
  1268. }
  1269. img{
  1270. margin-top: 10px;
  1271. width: 50px;
  1272. }
  1273. }
  1274. #sublog{
  1275. .body-wrapper{
  1276. background-image: url('../images/Trame-gris.svg');
  1277. background-repeat: repeat;
  1278. }
  1279. .content{
  1280. @include inlineflex;
  1281. width: 90%;
  1282. flex-direction: row-reverse;
  1283. justify-content: space-between;
  1284. .txt{
  1285. width: 50%;
  1286. .content_txt{
  1287. width: 50%;
  1288. }
  1289. & > p{
  1290. font-size: 1.2rem;
  1291. font-family: $Bold;
  1292. }
  1293. }
  1294. }
  1295. svg{
  1296. pointer-events: none;
  1297. }
  1298. .mapsalles{
  1299. width: 50%;
  1300. position: relative;
  1301. .contour{
  1302. position: relative;
  1303. z-index: 1;
  1304. pointer-events: none;
  1305. display: inline-block;
  1306. width: 100%;
  1307. vertical-align: middle;
  1308. overflow: hidden;
  1309. }
  1310. .fond{
  1311. position: absolute;
  1312. display: inline-block;
  1313. width: 100%;
  1314. vertical-align: middle;
  1315. overflow: hidden;
  1316. z-index:0;
  1317. left: 0;
  1318. top: 5.3%;
  1319. path{
  1320. fill: none;
  1321. pointer-events: all;
  1322. transition: fill 0.3s ease;
  1323. &:hover{
  1324. fill: $light-blue!important;
  1325. transition: fill 0.3s ease;
  1326. }
  1327. }
  1328. }
  1329. }
  1330. .content_salle{
  1331. visibility: hidden;
  1332. overflow-x: hidden;
  1333. position: absolute;
  1334. left: 50%;
  1335. top: 300px;
  1336. width: 40%;
  1337. background: white;
  1338. & > p{
  1339. padding-left: 10px;
  1340. }
  1341. .header-salles{
  1342. height: 100%;
  1343. background: $light-blue;
  1344. padding: 5px 10px;
  1345. color: white;
  1346. margin-top: 0;
  1347. width: 100%;
  1348. h3{
  1349. width: 100%;
  1350. }
  1351. img{
  1352. display: none;
  1353. }
  1354. }
  1355. .gal-salles{
  1356. height: 100%;
  1357. position: relative;
  1358. img{
  1359. width: 100%;
  1360. height: 100%;
  1361. }
  1362. }
  1363. h4{
  1364. background: $green;
  1365. font-size: 1.2rem;
  1366. font-family: $Bold;
  1367. padding: 5px 10px;
  1368. margin-top: -1px;
  1369. }
  1370. }
  1371. .slidesjs-navigation{
  1372. margin-right: 5px;
  1373. float: left;
  1374. display: block;
  1375. width: 30px;
  1376. height: 30px;
  1377. padding-top: 13px;
  1378. background-position: 0 0;
  1379. overflow: hidden;
  1380. z-index: 999;
  1381. position: absolute;
  1382. top: 50%;
  1383. }
  1384. .slidesjs-previous {
  1385. left: 10px;
  1386. background-image: url('/user/themes/lecampus/images/arrow-gal.svg');
  1387. }
  1388. .slidesjs-next {
  1389. background-image: url('/user/themes/lecampus/images/arrow-gal-next.svg');
  1390. right: 10px;
  1391. }
  1392. }
  1393. #default{
  1394. .header-wrapper{
  1395. width: 45%;
  1396. margin-top: 50px;
  1397. margin: auto;
  1398. }
  1399. .body-wrapper{
  1400. margin-bottom: 50px;
  1401. }
  1402. .title{
  1403. width: 80%;
  1404. margin: auto;
  1405. }
  1406. .txt{
  1407. margin:auto;
  1408. }
  1409. p{
  1410. margin-bottom: 10px;
  1411. }
  1412. }
  1413. .ok{
  1414. cursor: pointer;
  1415. }
  1416. .cookie-banner {
  1417. display: none;
  1418. position: fixed;
  1419. top: 0;
  1420. width: 100%;
  1421. &.active {
  1422. display: block;
  1423. }
  1424. }
  1425. // Overlay de la boite de dialogue
  1426. .cookie-inform-and-ask {
  1427. background-color: green;
  1428. display: none;
  1429. height: 100%;
  1430. left: 0;
  1431. position: fixed;
  1432. top: 0;
  1433. width: 100%;
  1434. &.active {
  1435. display: block;
  1436. }
  1437. // La vraie boîte de dialogue
  1438. .cookie-dialog {
  1439. left: 50%;
  1440. position: absolute;
  1441. top: 50%;
  1442. -webkit-transform: translate(-50%, -50%);
  1443. transform: translate(-50%, -50%);
  1444. width: 70%;
  1445. }
  1446. }