_blog.scss 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300
  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. top: 20vw;
  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{
  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% / 4) - 7.5px);
  166. min-width: 200px;
  167. margin: 0 0 10px 0 ;
  168. .card-header{
  169. position: absolute;
  170. width: 100%;
  171. right: 0;
  172. text-align: right;
  173. &.professionnels{
  174. background-color: $red;
  175. }
  176. &.grand_public{
  177. background-color: $light-blue;
  178. }
  179. &.formations{
  180. background-color: $grey;
  181. }
  182. .publics{
  183. padding: 2.5px 10px;
  184. color: white;
  185. }
  186. }
  187. .card-body{
  188. padding: 15px;
  189. background-image: url('/user/themes/lecampus/images/Trame-bleu2.svg');
  190. // background-position: center;
  191. background-repeat: repeat;
  192. // background-size: cover;
  193. }
  194. }
  195. .event{
  196. width: 45%;
  197. .card-content{
  198. .reso{
  199. @include inlineflex;
  200. flex-wrap: nowrap;
  201. justify-content: space-between;
  202. & > div, & > a{
  203. margin-right: 15px;
  204. }
  205. a{
  206. display: block;
  207. margin-bottom: 10px;
  208. img{
  209. margin-left: 10px;
  210. width: 20px;
  211. }
  212. }
  213. }
  214. .txt{
  215. width: 80%;
  216. }
  217. }
  218. }
  219. }
  220. }
  221. .start#form{
  222. .entete{
  223. border-top: 1px solid $light-blue
  224. }
  225. h2{
  226. margin-top: 0;
  227. }
  228. .body-wrapper{
  229. width: 100%;
  230. min-width: 250px;
  231. margin: auto auto 140px auto;
  232. form{
  233. width: calc( (100% / 2));
  234. margin-top: 20px;
  235. margin: auto;
  236. & > div{
  237. width: 100%;
  238. margin: 20px 0;
  239. border-bottom: 1px solid $red;
  240. .form-data{
  241. @include inlineflex();
  242. margin: 20px 0px;
  243. &> div{
  244. overflow: hidden;
  245. margin: 10px 10px;
  246. min-width: 100px;
  247. border: 2px solid $red;
  248. border-radius: 30px;
  249. padding: 10px 20px;
  250. &.check{
  251. background: $red;
  252. color: white;
  253. }
  254. input{
  255. border: none;
  256. }
  257. input[type='radio'] {
  258. visibility: hidden;
  259. position: absolute;
  260. }
  261. label{
  262. cursor: pointer;
  263. }
  264. }
  265. }
  266. &:nth-of-type(n+5):not(:nth-of-type(n+12)){
  267. width: 50%;
  268. float: left;
  269. border-bottom: 0px;
  270. .form-data{
  271. width: 100%;
  272. & > div{
  273. width: 100%;
  274. }
  275. }
  276. }
  277. &:nth-of-type(11){
  278. border-bottom: 1px solid $red !important;
  279. width: 100%!important;
  280. .form-data {
  281. width: 50%!important;
  282. }
  283. }
  284. &.button-wrapper{
  285. background: $red;
  286. height: 100px;
  287. position: absolute;
  288. left: 0;
  289. width: 100%;
  290. button{
  291. margin-right: 25%;
  292. position: absolute;
  293. right: 0;
  294. top: 50%;
  295. -webkit-transform: translateY(-50%);
  296. transform: translateY(-50%);
  297. background: white;
  298. border-radius: 30px;
  299. padding: 10px 35px;
  300. box-shadow:none;
  301. border:0;
  302. }
  303. }
  304. }
  305. }
  306. #send-valide{
  307. -webkit-transform: translate(-50%, -50%);
  308. transform: translate(-50%, -50%);
  309. background: $red;
  310. border-radius: 20px;
  311. position: fixed;
  312. width: 30%;
  313. height: 30%;
  314. left: 50%;
  315. top: 50%;
  316. padding: 50px;
  317. .toast{
  318. position: relative;
  319. text-align: center;
  320. color: white;
  321. }
  322. .ok{
  323. color: white;
  324. position: absolute;
  325. right: 20px;
  326. bottom: 20px;
  327. }
  328. }
  329. }
  330. }
  331. .header-wrapper{
  332. .title{
  333. h2{
  334. width: auto;
  335. margin-bottom: 20px;
  336. background: $red;
  337. border-radius: 30px;
  338. width: auto;
  339. padding: 10px 20px;
  340. color: white;
  341. font-size: 1.2rem;
  342. width:115px;
  343. }
  344. }
  345. }
  346. .content{
  347. width: 50%;
  348. margin: 4rem auto;
  349. p{
  350. margin: 10px 0;
  351. }
  352. }
  353. .content_s{
  354. margin: auto!important;
  355. }
  356. .entete{
  357. @include inlineflex;
  358. padding: 20px;
  359. background-image: url('/user/themes/lecampus/images/Trame-bleu2.svg');
  360. // background-position: center;
  361. background-repeat: repeat;
  362. // background-size: cover;
  363. height: auto;
  364. border-top: 10px solid $green;
  365. .entete_c{
  366. @include inlineflex;
  367. text-align: center;
  368. width: 70%;
  369. margin: 50px auto;
  370. position: relative;
  371. h1{
  372. width: auto;
  373. margin-bottom: 20px;
  374. background: $red;
  375. border-radius: 30px;
  376. width: auto;
  377. padding: 10px 20px;
  378. }
  379. }
  380. }
  381. .body-wrapper{
  382. .content{
  383. h4{
  384. &:not(:first-of-type){
  385. border-top: 1px solid black;
  386. padding-top: 30px;
  387. margin: 30px 0 0 0;
  388. }
  389. }
  390. }
  391. .sub-content{
  392. border-top: 1px solid black;
  393. margin-bottom: 20px;
  394. margin-top: 20px;
  395. & > img{
  396. width: 33%;
  397. float: left;
  398. margin: 20px 10px 0px 0px;
  399. }
  400. }
  401. }
  402. #event{
  403. margin-bottom: 20px;
  404. .content{
  405. margin-top: 50px;
  406. h2{
  407. float: left;
  408. margin-right: 20px;
  409. }
  410. .reso{
  411. @include inlineflex;
  412. flex-wrap: nowrap;
  413. width: 50px;
  414. height: 25px;
  415. }
  416. }
  417. .sidebar{
  418. margin-top: 50px;
  419. }
  420. p{
  421. a{
  422. text-decoration: underline;
  423. }
  424. }
  425. }
  426. .sidebar{
  427. position: absolute;
  428. right: 0;
  429. width: 20%;
  430. margin: -55px auto 0 20px;
  431. h2{
  432. background: $red;
  433. border-radius: 100px;
  434. width: 100px;
  435. height: 100px;
  436. }
  437. .side-agenda{
  438. padding: 10px 20px 10px 0;
  439. &:not(:nth-of-type(1)){
  440. border-top: 1px solid $light-blue;
  441. &::before{
  442. content: " ";
  443. display: block;
  444. position: absolute;
  445. width: 5px;
  446. height: 5px;
  447. margin-top: -13px;
  448. border-radius: 10px;
  449. background: $light-blue;
  450. }
  451. }
  452. &:nth-of-type(3){
  453. margin-bottom: 10px;
  454. }
  455. }
  456. .side-all-agenda{
  457. background: white;
  458. width: auto;
  459. padding: 10px 20px;
  460. margin-bottom: 10px;
  461. float: left;
  462. border: 2px solid $red;
  463. border-radius: 30px;
  464. transition: background-color 0.3s ease;
  465. a{
  466. color: black;
  467. }
  468. &:hover{
  469. background-color: $red;
  470. transition: background-color 0.3s ease;
  471. a{
  472. color: white;
  473. }
  474. }
  475. }
  476. }
  477. #newsletter{
  478. padding: 20px 0;
  479. background: $light-blue;
  480. /* LOADER */
  481. .ml-form-embedSubmitLoad {
  482. display: inline-block;
  483. width: 20px;
  484. height: 20px;
  485. }
  486. .ml-form-embedSubmitLoad:after {
  487. content: " ";
  488. display: block;
  489. width: 11px;
  490. height: 11px;
  491. margin: 1px;
  492. border-radius: 50%;
  493. border: 4px solid #fff;
  494. border-color: #ffffff #ffffff #ffffff transparent;
  495. animation: ml-form-embedSubmitLoad 1.2s linear infinite;
  496. }
  497. @keyframes ml-form-embedSubmitLoad {
  498. 0% {
  499. transform: rotate(0deg);
  500. }
  501. 100% {
  502. transform: rotate(360deg);
  503. }
  504. }
  505. #mlb2-985974.ml-form-embedContainer {
  506. box-sizing: border-box;
  507. display: table;
  508. height: 100%;
  509. margin: 0 auto;
  510. width: 100% !important;
  511. }
  512. #mlb2-985974.ml-form-embedContainer h4,
  513. #mlb2-985974.ml-form-embedContainer p,
  514. #mlb2-985974.ml-form-embedContainer span,
  515. #mlb2-985974.ml-form-embedContainer button {
  516. text-transform: none !important;
  517. letter-spacing: normal !important;
  518. }
  519. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper {
  520. display: inline-block !important;
  521. margin: 0;
  522. padding: 0;
  523. position: relative;
  524. }
  525. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
  526. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedDefault { width: 400px; }
  527. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedForm { width: 40%; }
  528. #mlb2-985974.ml-form-embedContainer .ml-form-align-left { text-align: left; }
  529. #mlb2-985974.ml-form-embedContainer .ml-form-align-center { text-align: center; }
  530. #mlb2-985974.ml-form-embedContainer .ml-form-align-default { display: table-cell !important; vertical-align: middle !important; text-align: center !important; }
  531. #mlb2-985974.ml-form-embedContainer .ml-form-align-right { text-align: right; }
  532. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {
  533. border-top-left-radius: 4px;
  534. border-top-right-radius: 4px;
  535. height: auto;
  536. width: 100%;
  537. }
  538. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
  539. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  540. // padding: 20px 20px 0 20px;
  541. }
  542. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
  543. padding-bottom: 0;
  544. justify-content: center;
  545. display: flex;
  546. border: 1px solid white;
  547. border-radius: 30px;
  548. overflow: hidden;
  549. }
  550. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
  551. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  552. width: 100%;
  553. }
  554. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent{
  555. color: white;
  556. p{
  557. color: white;
  558. text-align: center;
  559. font-family: $Regular;
  560. }
  561. }
  562. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent label {
  563. color: white;
  564. white-space:nowrap;
  565. padding: 0 20px;
  566. line-height: 40px;
  567. }
  568. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
  569. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  570. color: #000000;
  571. font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  572. font-size: 14px;
  573. font-weight: 400;
  574. margin: 0 0 10px 0;
  575. text-align: left;
  576. }
  577. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,
  578. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,
  579. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,
  580. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {
  581. color: #000000;
  582. font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  583. font-size: 14px;
  584. }
  585. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,
  586. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {
  587. color: #000000;
  588. text-decoration: underline;
  589. }
  590. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,
  591. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {
  592. margin: 0;
  593. }
  594. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
  595. margin: 0;
  596. width: 100%;
  597. }
  598. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
  599. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
  600. margin: 0 0 20px 0;
  601. width: 100%;
  602. }
  603. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {
  604. margin: 0;
  605. }
  606. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
  607. margin: 0 0 10px 0;
  608. width: 100%;
  609. }
  610. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {
  611. margin: 0;
  612. }
  613. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {
  614. margin: 0;
  615. }
  616. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  617. background-color: #ffffff !important;
  618. color: #333333 !important;
  619. border-color: #cccccc !important;
  620. border-radius: 4px !important;
  621. border-style: solid !important;
  622. border-width: 1px !important;
  623. font-size: 14px !important;
  624. line-height: 20px !important;
  625. padding: 10px 10px !important;
  626. width: 100% !important;
  627. box-sizing: border-box !important;
  628. max-width: 100% !important;
  629. }
  630. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder { color: #333333; }
  631. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder { color: #333333; }
  632. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder { color: #333333; }
  633. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder { color: #333333; }
  634. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {
  635. height: 40px;
  636. display: flex;
  637. }
  638. .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 100%; }
  639. .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal { width: auto; margin-left: -45px;}
  640. .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields { box-sizing: border-box; float: left; }
  641. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
  642. background-color: #ffffff;
  643. color: #333333;
  644. border-radius: 30px;
  645. border-style: solid;
  646. border-width: 0px;
  647. font-size: 14px;
  648. line-height: 20px;
  649. padding: 10px 10px;
  650. width: 100%;
  651. box-sizing: border-box;
  652. }
  653. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
  654. background-color: transparent;
  655. border-color: transparent;
  656. border-style: solid;
  657. box-shadow: none;
  658. color: black !important;
  659. font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  660. font-size: 14px !important;
  661. font-weight: 700;
  662. line-height: 20px;
  663. padding: 10px !important;
  664. width: 100%;
  665. }
  666. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type="checkbox"] {
  667. display: inline-block;
  668. float: left;
  669. margin: 1px 0 0 0;
  670. opacity: 1;
  671. visibility: visible;
  672. appearance: checkbox !important;
  673. -moz-appearance: checkbox !important;
  674. -webkit-appearance: checkbox !important;
  675. position: relative;
  676. height: 14px;
  677. width: 14px;
  678. }
  679. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {
  680. color: #000000;
  681. display: block;
  682. font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  683. font-size: 12px;
  684. text-align: left;
  685. padding-left: 25px;
  686. }
  687. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {
  688. font-weight: normal;
  689. margin: 0;
  690. padding: 0;
  691. }
  692. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {
  693. color: #000000;
  694. text-decoration: underline;
  695. }
  696. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {
  697. color: #000000 !important;
  698. font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
  699. font-size: 12px !important;
  700. font-weight: normal !important;
  701. line-height: 18px !important;
  702. padding: 0 !important;
  703. margin: 0 5px 0 0 !important;
  704. }
  705. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {
  706. margin: 0;
  707. }
  708. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  709. margin: 0 0 20px 0;
  710. }
  711. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  712. background-color: #000000 !important;
  713. border: none !important;
  714. border-radius: 4px !important;
  715. box-shadow: none !important;
  716. color: #ffffff !important;
  717. font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
  718. font-size: 14px !important;
  719. font-weight: 700 !important;
  720. line-height: 20px !important;
  721. padding: 10px !important;
  722. width: 100% !important;
  723. box-sizing: border-box !important;
  724. }
  725. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
  726. background-color: #333333 !important;
  727. }
  728. .ml-subscribe-close {
  729. width: 30px;
  730. height: 30px;
  731. background: url(https://bucket.mlcdn.com/images/default/modal_close.png) no-repeat;
  732. background-size: 30px;
  733. cursor: pointer;
  734. margin-top: -10px;
  735. margin-right: -10px;
  736. position: absolute;
  737. top: 0;
  738. right: 0;
  739. }
  740. .ml-error input {
  741. background: url(https://bucket.mlcdn.com/images/default/error-icon.png) 98% center no-repeat #ffffff !important;
  742. background-size: 24px 24px !important;
  743. }
  744. .ml-error .label-description {
  745. color: #ff0000 !important;
  746. }
  747. .ml-error .label-description p {
  748. color: #ff0000 !important;
  749. }
  750. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
  751. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {
  752. color: #ff0000 !important;
  753. }
  754. // @media only screen and (max-width: 400px){
  755. // .ml-form-embedWrapper.embedDefault, .ml-form-embedWrapper.embedPopup { width: 100%!important; }
  756. // .ml-form-formContent.horozintalForm { float: left!important; }
  757. // .ml-form-formContent.horozintalForm .ml-form-horizontalRow { height: auto!important; width: 100%!important; float: left!important; }
  758. // .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 100%!important; }
  759. // .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-right: 0px!important; padding-bottom: 10px; }
  760. // .ml-form-formContent.horozintalForm .ml-button-horizontal { width: 100%!important; }
  761. // }
  762. @media only screen and (max-width: 400px) {
  763. .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {
  764. margin-bottom: 10px !important;
  765. width: 100% !important;
  766. }
  767. }
  768. #mc_embed_signup{
  769. width: 600px;
  770. margin: auto;
  771. padding: 0 0 0 10px;
  772. border-radius: 100px;
  773. border: 1px solid $white;
  774. form{
  775. @include inlineflex();
  776. width: 100%;
  777. #mc_embed_signup_scroll{
  778. @include inlineflex();
  779. width: 100%;
  780. margin: auto;
  781. label{
  782. text-align: center;
  783. color: $white;
  784. margin-right: 10px;
  785. width: 260px;
  786. }
  787. &>input{
  788. width: 315px;
  789. padding-left: 20px;
  790. }
  791. input{
  792. border-radius: 30px;
  793. height: 31px;
  794. box-shadow: none;
  795. border: none;
  796. }
  797. .clear{
  798. input{
  799. background: $white;
  800. margin-left: -30px;
  801. }
  802. }
  803. }
  804. }
  805. }
  806. }
  807. #home{
  808. .content{
  809. @include inlineflex();
  810. & > p{
  811. position: relative;
  812. width: calc(100% / 3);
  813. padding: 50px 20px;
  814. margin-top: 10px;
  815. img{
  816. position: absolute;
  817. width: auto;
  818. height: 50px;
  819. top: -20px;
  820. left: 50%;
  821. -webkit-transform: translate(-50%);
  822. transform: translate(-50%);
  823. }
  824. &:nth-of-type(n+4){
  825. width: calc(100% / 4);
  826. }
  827. &:last-child{
  828. width: auto!important;
  829. margin-top: 0!important;
  830. margin: auto;
  831. a{
  832. display: block;
  833. padding: 10px 20px;
  834. text-align: center;
  835. border: 2px solid $green;
  836. border-radius: 30px;
  837. margin: auto;
  838. transition: background-color 0.3s ease;
  839. }
  840. }
  841. }
  842. }
  843. }
  844. #item{
  845. .content{
  846. @include inlineflex;
  847. .images_s{
  848. // width: calc(100% / 2 - 15px);
  849. width: 40%;
  850. align-self: center;
  851. // min-width: 300px;
  852. margin-right: 15px;
  853. img{
  854. margin-bottom: 15px;
  855. }
  856. }
  857. .content_s{
  858. width: calc(60% - 30px);
  859. }
  860. .icones{
  861. margin: 70px 0;
  862. @include inlineflex;
  863. justify-content: space-around;
  864. width: 100%;
  865. .icon{
  866. height: 50px;
  867. width: auto;
  868. max-width: 200px;
  869. img{
  870. height: 50px;
  871. width: 100%;
  872. }
  873. p{
  874. text-align: center;
  875. }
  876. }
  877. }
  878. }
  879. }
  880. #devis{
  881. @include inlineflex();
  882. justify-content: center;
  883. align-items: center;
  884. background-image: url('/user/themes/lecampus/images/Trame-bleu2.svg');
  885. background-repeat: repeat;
  886. width: 100%;
  887. // height: 300px;
  888. .title{
  889. width: 200px;
  890. height: 200px;
  891. background: $red;
  892. border-radius: 200px;
  893. -webkit-transform: translateX(80px);
  894. transform: translateX(80px);
  895. h4{
  896. text-align: center;
  897. color: white;
  898. margin: 50% 10px 0 10px;
  899. -webkit-transform: translateY(-50%);
  900. transform: translateY(-50%);
  901. }
  902. }
  903. .txt{
  904. @include inlineflex();
  905. background: white;
  906. width: 25%;
  907. margin-right: 20px;
  908. height: auto;
  909. p{
  910. padding: 20px 20px 20px 100px;
  911. color: black;
  912. text-align: left;
  913. strong{
  914. font-size: 1.3rem;
  915. }
  916. }
  917. }
  918. .demander-votre-devis{
  919. margin-top: 0;
  920. -webkit-transform: translateX(-200px);
  921. transform: translateX(-200px);
  922. }
  923. .img{
  924. width: 400px;
  925. height: 300px;
  926. overflow: hidden;
  927. img{
  928. width: auto;
  929. height: 400px;
  930. }
  931. }
  932. }
  933. #devis{
  934. &.item, &.sublog{
  935. background: $red;
  936. height: auto;
  937. padding: 20px 0;
  938. a{
  939. color: white;
  940. .title{
  941. vertical-align: baseline;
  942. border-radius: 30px;
  943. border: 1px solid white;
  944. padding: 5px 20px;
  945. height: 35px;
  946. width: auto;
  947. -webkit-transform: translateX(0);
  948. transform: translateX(0);
  949. }
  950. &:hover{
  951. color: black;
  952. .title{
  953. background: white;
  954. transition: background 0.3s ease;
  955. }
  956. }
  957. }
  958. }
  959. }
  960. // .bx-viewport{
  961. // height: 30vw!important;
  962. // }
  963. #reco{
  964. background: $dark-blue;
  965. .title{
  966. display: flex;
  967. cursor: pointer;
  968. width: 100%;
  969. padding: 10px;
  970. h2{
  971. width: auto;
  972. margin: auto;
  973. color: white;
  974. padding: 10px;
  975. text-align: center;
  976. border-top: 1px solid white;
  977. border-bottom: 1px solid white;
  978. font-size: 1rem;
  979. &::after{
  980. display: inline-flex;
  981. margin-left: 10px;
  982. content: " ";
  983. background: url('../images/fleche-top.svg');
  984. background-size: 15px 18px;
  985. background-repeat: no-repeat;
  986. width: 15px;
  987. height: 18px;
  988. }
  989. }
  990. &.open{
  991. h2:after{
  992. -webkit-transform: rotate(180deg);
  993. transform: rotate(180deg);
  994. }
  995. }
  996. }
  997. .txt{
  998. z-index: -1;
  999. position: relative;
  1000. width: 100%;
  1001. display: none;
  1002. p{
  1003. color: white;
  1004. width: 300px;
  1005. a{
  1006. color: white;
  1007. text-decoration: underline;
  1008. }
  1009. }
  1010. &.open{
  1011. @include inlineflex;
  1012. justify-content: center;
  1013. padding-top: 20px;
  1014. z-index: 999;
  1015. background: $dark-blue;
  1016. .item{
  1017. display: block;
  1018. }
  1019. }
  1020. h3{
  1021. color: $green;
  1022. }
  1023. }
  1024. .item{
  1025. margin: 0 0px 20px 20px;
  1026. border-left: 1px solid white;
  1027. padding-left: 20px;
  1028. img{
  1029. width: 50px;
  1030. margin-bottom: 10px;
  1031. }
  1032. }
  1033. }
  1034. .content_s{
  1035. &.map{
  1036. width: 100%!important;
  1037. height: auto;
  1038. p{
  1039. &:last-child{
  1040. height: 500px;
  1041. }
  1042. }
  1043. a#carte{
  1044. display: block;
  1045. width: 100%;
  1046. height: 100%;
  1047. }
  1048. }
  1049. }
  1050. #event{
  1051. .title{
  1052. width: 45%;
  1053. margin: auto;
  1054. }
  1055. .head-event{
  1056. .tags{
  1057. width: 100%;
  1058. &.professionnels{
  1059. background-color: $red;
  1060. }
  1061. &.grand_public{
  1062. background-color: $light-blue;
  1063. }
  1064. &.formations{
  1065. background-color: $grey;
  1066. }
  1067. &.publics{
  1068. padding: 2.5px 10px;
  1069. color: white;
  1070. }
  1071. }
  1072. }
  1073. .card-header{
  1074. @include inlineflex;
  1075. flex-direction: column;
  1076. width: 100%;
  1077. &.professionnels{
  1078. background-color: $red;
  1079. }
  1080. &.grand_public{
  1081. background-color: $light-blue;
  1082. }
  1083. &.formations{
  1084. background-color: $grey;
  1085. }
  1086. .publics{
  1087. text-align: right;
  1088. &.publics{
  1089. padding: 2.5px 10px;
  1090. color: white;
  1091. }
  1092. }
  1093. }
  1094. .card-body{
  1095. padding: 15px;
  1096. background-image: url('/user/themes/lecampus/images/Trame-bleu2.svg');
  1097. // background-position: center;
  1098. background-repeat: repeat;
  1099. // background-size: cover;
  1100. }
  1101. .card-content{
  1102. margin-top: 20px;
  1103. }
  1104. }
  1105. .demander-votre-devis{
  1106. padding: 10px;
  1107. z-index: 999;
  1108. background: $red;
  1109. position: absolute;
  1110. width: 200px;
  1111. height: 200px;
  1112. right: 100px;
  1113. margin-top: -100px;
  1114. color: white;
  1115. text-align: center;
  1116. strong{
  1117. font-weight: bold!important;
  1118. }
  1119. a{
  1120. color: white;
  1121. }
  1122. img{
  1123. margin-top: 10px;
  1124. width: 50px;
  1125. }
  1126. }
  1127. #sublog{
  1128. .body-wrapper{
  1129. background-image: url('../images/Trame-gris.svg');
  1130. background-repeat: repeat;
  1131. }
  1132. .content{
  1133. @include inlineflex;
  1134. width: 90%;
  1135. flex-direction: row-reverse;
  1136. justify-content: space-between;
  1137. .txt{
  1138. width: 50%;
  1139. .content_txt{
  1140. width: 50%;
  1141. }
  1142. & > p{
  1143. font-size: 1.2rem;
  1144. font-family: $Bold;
  1145. }
  1146. }
  1147. }
  1148. svg{
  1149. pointer-events: none;
  1150. }
  1151. .mapsalles{
  1152. width: 50%;
  1153. position: relative;
  1154. .contour{
  1155. position: relative;
  1156. z-index: 1;
  1157. pointer-events: none;
  1158. display: inline-block;
  1159. width: 100%;
  1160. vertical-align: middle;
  1161. overflow: hidden;
  1162. }
  1163. .fond{
  1164. position: absolute;
  1165. display: inline-block;
  1166. width: 100%;
  1167. vertical-align: middle;
  1168. overflow: hidden;
  1169. z-index:0;
  1170. left: 0;
  1171. top: 5.3%;
  1172. path{
  1173. fill: none;
  1174. pointer-events: all;
  1175. transition: fill 0.3s ease;
  1176. &:hover{
  1177. fill: $light-blue!important;
  1178. transition: fill 0.3s ease;
  1179. }
  1180. }
  1181. }
  1182. }
  1183. .content_salle{
  1184. // display: none;
  1185. visibility: hidden;
  1186. position: absolute;
  1187. left: 50%;
  1188. top: 300px;
  1189. width: 40%;
  1190. background: white;
  1191. & > p{
  1192. padding-left: 10px;
  1193. }
  1194. .header-salles{
  1195. background: $light-blue;
  1196. padding: 5px 10px;
  1197. color: white;
  1198. margin-top: 0;
  1199. width: 100%;
  1200. h3{
  1201. width: 100%;
  1202. }
  1203. img{
  1204. display: none;
  1205. }
  1206. }
  1207. h4{
  1208. background: $green;
  1209. font-size: 1.2rem;
  1210. font-family: $Bold;
  1211. padding: 5px 10px;
  1212. margin-top: -1px;
  1213. }
  1214. .bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager{
  1215. bottom: 10px!important;
  1216. }
  1217. .bx-controls-direction{
  1218. a{
  1219. background-size: cover;
  1220. background-repeat: no-repeat;
  1221. }
  1222. .bx-prev{
  1223. background-image: url('/user/themes/lecampus/images/arrow-gal.svg');
  1224. }
  1225. .bx-next{
  1226. background-image: url('/user/themes/lecampus/images/arrow-gal-next.svg');
  1227. &:hover, &:focus{
  1228. background-position: center!important;
  1229. }
  1230. }
  1231. }
  1232. .bx-pager-link {
  1233. background: white!important;
  1234. &.active{
  1235. background: black!important;
  1236. }
  1237. }
  1238. }
  1239. }
  1240. #default{
  1241. .header-wrapper{
  1242. width: 45%;
  1243. margin-top: 50px;
  1244. margin: auto;
  1245. }
  1246. .body-wrapper{
  1247. margin-bottom: 50px;
  1248. }
  1249. .title{
  1250. width: 80%;
  1251. margin: auto;
  1252. }
  1253. .txt{
  1254. margin:auto;
  1255. }
  1256. p{
  1257. margin-bottom: 10px;
  1258. }
  1259. }
  1260. .ok{
  1261. cursor: pointer;
  1262. }