_mobile.scss 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923
  1. @media screen and (max-width: 1450px) {
  2. header{
  3. &> nav{
  4. width: 90%!important;
  5. }
  6. }
  7. }
  8. @media screen and (max-width: 1080px) {
  9. header{
  10. &> nav{
  11. width: 100%!important;
  12. }
  13. }
  14. }
  15. @media screen and (max-width: 1024px) {
  16. header nav{
  17. position: relative;
  18. width: 90%!important;
  19. .dropmenu{
  20. background: white;
  21. display: none;
  22. position: absolute;
  23. left: -6%;
  24. top: 100px;
  25. width: auto!important;
  26. height: auto;
  27. &>ul{
  28. flex-direction: column!important;
  29. &>li{
  30. text-align: left;
  31. &>ul{
  32. margin: auto;
  33. &>li{
  34. text-align: left;
  35. margin-left: 10px;
  36. a{
  37. font-family: $Regular;
  38. }
  39. }
  40. }
  41. &> a{
  42. border: none;
  43. line-height: 2rem;
  44. }
  45. }
  46. }
  47. &.active{
  48. display: block;
  49. }
  50. }
  51. .logo{
  52. margin: auto;
  53. }
  54. .navTrigger {
  55. cursor: pointer;
  56. width: 30px;
  57. height: 25px;
  58. margin: auto 0;
  59. left: 0;
  60. top: 0;
  61. bottom: 0;
  62. }
  63. .navTrigger i {
  64. background-color: $light-blue;
  65. border-radius: 2px;
  66. content: '';
  67. display: block;
  68. width: 100%;
  69. height: 4px;
  70. }
  71. .navTrigger i:nth-child(1) {
  72. -webkit-animation: outT 0.8s backwards;
  73. animation: outT 0.8s backwards;
  74. -webkit-animation-direction: reverse;
  75. animation-direction: reverse;
  76. }
  77. .navTrigger i:nth-child(2) {
  78. margin: 5px 0;
  79. -webkit-animation: outM 0.8s backwards;
  80. animation: outM 0.8s backwards;
  81. -webkit-animation-direction: reverse;
  82. animation-direction: reverse;
  83. }
  84. .navTrigger i:nth-child(3) {
  85. -webkit-animation: outBtm 0.8s backwards;
  86. animation: outBtm 0.8s backwards;
  87. -webkit-animation-direction: reverse;
  88. animation-direction: reverse;
  89. }
  90. .navTrigger.active i:nth-child(1) {
  91. -webkit-animation: inT 0.8s forwards;
  92. animation: inT 0.8s forwards;
  93. }
  94. .navTrigger.active i:nth-child(2) {
  95. -webkit-animation: inM 0.8s forwards;
  96. animation: inM 0.8s forwards;
  97. }
  98. .navTrigger.active i:nth-child(3) {
  99. -webkit-animation: inBtm 0.8s forwards;
  100. animation: inBtm 0.8s forwards;
  101. }
  102. @-webkit-keyframes inM {
  103. 50% {
  104. -webkit-transform: rotate(0deg);
  105. }
  106. 100% {
  107. -webkit-transform: rotate(45deg);
  108. }
  109. }
  110. @keyframes inM {
  111. 50% {
  112. -webkit-transform: rotate(0deg);
  113. transform: rotate(0deg);
  114. }
  115. 100% {
  116. -webkit-transform: rotate(45deg);
  117. transform: rotate(45deg);
  118. }
  119. }
  120. @-webkit-keyframes outM {
  121. 50% {
  122. -webkit-transform: rotate(0deg);
  123. }
  124. 100% {
  125. -webkit-transform: rotate(45deg);
  126. }
  127. }
  128. @keyframes outM {
  129. 50% {
  130. -webkit-transform: rotate(0deg);
  131. transform: rotate(0deg);
  132. }
  133. 100% {
  134. -webkit-transform: rotate(45deg);
  135. transform: rotate(45deg);
  136. }
  137. }
  138. @-webkit-keyframes inT {
  139. 0% {
  140. -webkit-transform: translateY(0px) rotate(0deg);
  141. }
  142. 50% {
  143. -webkit-transform: translateY(9px) rotate(0deg);
  144. }
  145. 100% {
  146. -webkit-transform: translateY(9px) rotate(135deg);
  147. }
  148. }
  149. @keyframes inT {
  150. 0% {
  151. -webkit-transform: translateY(0px) rotate(0deg);
  152. transform: translateY(0px) rotate(0deg);
  153. }
  154. 50% {
  155. -webkit-transform: translateY(9px) rotate(0deg);
  156. transform: translateY(9px) rotate(0deg);
  157. }
  158. 100% {
  159. -webkit-transform: translateY(9px) rotate(135deg);
  160. transform: translateY(9px) rotate(135deg);
  161. }
  162. }
  163. @-webkit-keyframes outT {
  164. 0% {
  165. -webkit-transform: translateY(0px) rotate(0deg);
  166. }
  167. 50% {
  168. -webkit-transform: translateY(9px) rotate(0deg);
  169. }
  170. 100% {
  171. -webkit-transform: translateY(9px) rotate(135deg);
  172. }
  173. }
  174. @keyframes outT {
  175. 0% {
  176. -webkit-transform: translateY(0px) rotate(0deg);
  177. transform: translateY(0px) rotate(0deg);
  178. }
  179. 50% {
  180. -webkit-transform: translateY(9px) rotate(0deg);
  181. transform: translateY(9px) rotate(0deg);
  182. }
  183. 100% {
  184. -webkit-transform: translateY(9px) rotate(135deg);
  185. transform: translateY(9px) rotate(135deg);
  186. }
  187. }
  188. @-webkit-keyframes inBtm {
  189. 0% {
  190. -webkit-transform: translateY(0px) rotate(0deg);
  191. }
  192. 50% {
  193. -webkit-transform: translateY(-9px) rotate(0deg);
  194. }
  195. 100% {
  196. -webkit-transform: translateY(-9px) rotate(135deg);
  197. }
  198. }
  199. @keyframes inBtm {
  200. 0% {
  201. -webkit-transform: translateY(0px) rotate(0deg);
  202. transform: translateY(0px) rotate(0deg);
  203. }
  204. 50% {
  205. -webkit-transform: translateY(-9px) rotate(0deg);
  206. transform: translateY(-9px) rotate(0deg);
  207. }
  208. 100% {
  209. -webkit-transform: translateY(-9px) rotate(135deg);
  210. transform: translateY(-9px) rotate(135deg);
  211. }
  212. }
  213. @-webkit-keyframes outBtm {
  214. 0% {
  215. -webkit-transform: translateY(0px) rotate(0deg);
  216. }
  217. 50% {
  218. -webkit-transform: translateY(-9px) rotate(0deg);
  219. }
  220. 100% {
  221. -webkit-transform: translateY(-9px) rotate(135deg);
  222. }
  223. }
  224. @keyframes outBtm {
  225. 0% {
  226. -webkit-transform: translateY(0px) rotate(0deg);
  227. transform: translateY(0px) rotate(0deg);
  228. }
  229. 50% {
  230. -webkit-transform: translateY(-9px) rotate(0deg);
  231. transform: translateY(-9px) rotate(0deg);
  232. }
  233. 100% {
  234. -webkit-transform: translateY(-9px) rotate(135deg);
  235. transform: translateY(-9px) rotate(135deg);
  236. }
  237. }
  238. }
  239. .gal{
  240. .title_gal{
  241. top: 15vw!important;
  242. max-width: 60%!important;
  243. }
  244. }
  245. #item{
  246. .content{
  247. // width: 80%!important;
  248. .icones{
  249. flex-wrap: nowrap!important;
  250. }
  251. }
  252. }
  253. #item .demander-votre-devis,
  254. #sublog .demander-votre-devis{
  255. width: 300px!important;
  256. height: 110px!important;
  257. a{
  258. display: inline-flex!important;
  259. }
  260. p:nth-of-type(2){
  261. display: none!important;
  262. }
  263. img{
  264. margin-left: 20px!important;
  265. margin-top: 0px!important;
  266. }
  267. }
  268. #devis{
  269. .txt{
  270. width: 35%!important;
  271. }
  272. .demander-votre-devis{
  273. -webkit-transform: translate(0%, -125%)!important;
  274. transform: translate(0%, -125%)!important;
  275. }
  276. }
  277. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedForm{
  278. width: 50%!important;
  279. }
  280. }
  281. @media screen and (max-width: 960px) {
  282. // header nav{
  283. // position: relative;
  284. // width: 90%;
  285. // .dropmenu{
  286. // background: white;
  287. // display: none;
  288. // position: absolute;
  289. // left: -6%;
  290. // top: 100px;
  291. // width: auto!important;
  292. // height: auto;
  293. // &>ul{
  294. // flex-direction: column!important;
  295. // &>li{
  296. // text-align: left;
  297. // &>ul{
  298. // margin: auto;
  299. // &>li{
  300. // text-align: left;
  301. // margin-left: 10px;
  302. // a{
  303. // font-family: $Regular;
  304. // }
  305. // }
  306. // }
  307. // &> a{
  308. // border: none;
  309. // line-height: 2rem;
  310. // }
  311. // }
  312. // }
  313. // &.active{
  314. // display: block;
  315. //
  316. // }
  317. // }
  318. // .logo{
  319. // margin: auto;
  320. // }
  321. // .navTrigger {
  322. // cursor: pointer;
  323. // width: 30px;
  324. // height: 25px;
  325. // margin: auto 0;
  326. // left: 0;
  327. // top: 0;
  328. // bottom: 0;
  329. // }
  330. // .navTrigger i {
  331. // background-color: $light-blue;
  332. // border-radius: 2px;
  333. // content: '';
  334. // display: block;
  335. // width: 100%;
  336. // height: 4px;
  337. // }
  338. // .navTrigger i:nth-child(1) {
  339. // -webkit-animation: outT 0.8s backwards;
  340. // animation: outT 0.8s backwards;
  341. // -webkit-animation-direction: reverse;
  342. // animation-direction: reverse;
  343. // }
  344. // .navTrigger i:nth-child(2) {
  345. // margin: 5px 0;
  346. // -webkit-animation: outM 0.8s backwards;
  347. // animation: outM 0.8s backwards;
  348. // -webkit-animation-direction: reverse;
  349. // animation-direction: reverse;
  350. // }
  351. // .navTrigger i:nth-child(3) {
  352. // -webkit-animation: outBtm 0.8s backwards;
  353. // animation: outBtm 0.8s backwards;
  354. // -webkit-animation-direction: reverse;
  355. // animation-direction: reverse;
  356. // }
  357. // .navTrigger.active i:nth-child(1) {
  358. // -webkit-animation: inT 0.8s forwards;
  359. // animation: inT 0.8s forwards;
  360. // }
  361. // .navTrigger.active i:nth-child(2) {
  362. // -webkit-animation: inM 0.8s forwards;
  363. // animation: inM 0.8s forwards;
  364. // }
  365. // .navTrigger.active i:nth-child(3) {
  366. // -webkit-animation: inBtm 0.8s forwards;
  367. // animation: inBtm 0.8s forwards;
  368. // }
  369. // @-webkit-keyframes inM {
  370. // 50% {
  371. // -webkit-transform: rotate(0deg);
  372. // }
  373. // 100% {
  374. // -webkit-transform: rotate(45deg);
  375. // }
  376. // }
  377. // @keyframes inM {
  378. // 50% {
  379. // -webkit-transform: rotate(0deg);
  380. // transform: rotate(0deg);
  381. // }
  382. // 100% {
  383. // -webkit-transform: rotate(45deg);
  384. // transform: rotate(45deg);
  385. // }
  386. // }
  387. // @-webkit-keyframes outM {
  388. // 50% {
  389. // -webkit-transform: rotate(0deg);
  390. // }
  391. // 100% {
  392. // -webkit-transform: rotate(45deg);
  393. // }
  394. // }
  395. // @keyframes outM {
  396. // 50% {
  397. // -webkit-transform: rotate(0deg);
  398. // transform: rotate(0deg);
  399. // }
  400. // 100% {
  401. // -webkit-transform: rotate(45deg);
  402. // transform: rotate(45deg);
  403. // }
  404. // }
  405. // @-webkit-keyframes inT {
  406. // 0% {
  407. // -webkit-transform: translateY(0px) rotate(0deg);
  408. // }
  409. // 50% {
  410. // -webkit-transform: translateY(9px) rotate(0deg);
  411. // }
  412. // 100% {
  413. // -webkit-transform: translateY(9px) rotate(135deg);
  414. // }
  415. // }
  416. // @keyframes inT {
  417. // 0% {
  418. // -webkit-transform: translateY(0px) rotate(0deg);
  419. // transform: translateY(0px) rotate(0deg);
  420. // }
  421. // 50% {
  422. // -webkit-transform: translateY(9px) rotate(0deg);
  423. // transform: translateY(9px) rotate(0deg);
  424. // }
  425. // 100% {
  426. // -webkit-transform: translateY(9px) rotate(135deg);
  427. // transform: translateY(9px) rotate(135deg);
  428. // }
  429. // }
  430. // @-webkit-keyframes outT {
  431. // 0% {
  432. // -webkit-transform: translateY(0px) rotate(0deg);
  433. // }
  434. // 50% {
  435. // -webkit-transform: translateY(9px) rotate(0deg);
  436. // }
  437. // 100% {
  438. // -webkit-transform: translateY(9px) rotate(135deg);
  439. // }
  440. // }
  441. // @keyframes outT {
  442. // 0% {
  443. // -webkit-transform: translateY(0px) rotate(0deg);
  444. // transform: translateY(0px) rotate(0deg);
  445. // }
  446. // 50% {
  447. // -webkit-transform: translateY(9px) rotate(0deg);
  448. // transform: translateY(9px) rotate(0deg);
  449. // }
  450. // 100% {
  451. // -webkit-transform: translateY(9px) rotate(135deg);
  452. // transform: translateY(9px) rotate(135deg);
  453. // }
  454. // }
  455. // @-webkit-keyframes inBtm {
  456. // 0% {
  457. // -webkit-transform: translateY(0px) rotate(0deg);
  458. // }
  459. // 50% {
  460. // -webkit-transform: translateY(-9px) rotate(0deg);
  461. // }
  462. // 100% {
  463. // -webkit-transform: translateY(-9px) rotate(135deg);
  464. // }
  465. // }
  466. // @keyframes inBtm {
  467. // 0% {
  468. // -webkit-transform: translateY(0px) rotate(0deg);
  469. // transform: translateY(0px) rotate(0deg);
  470. // }
  471. // 50% {
  472. // -webkit-transform: translateY(-9px) rotate(0deg);
  473. // transform: translateY(-9px) rotate(0deg);
  474. // }
  475. // 100% {
  476. // -webkit-transform: translateY(-9px) rotate(135deg);
  477. // transform: translateY(-9px) rotate(135deg);
  478. // }
  479. // }
  480. // @-webkit-keyframes outBtm {
  481. // 0% {
  482. // -webkit-transform: translateY(0px) rotate(0deg);
  483. // }
  484. // 50% {
  485. // -webkit-transform: translateY(-9px) rotate(0deg);
  486. // }
  487. // 100% {
  488. // -webkit-transform: translateY(-9px) rotate(135deg);
  489. // }
  490. // }
  491. // @keyframes outBtm {
  492. // 0% {
  493. // -webkit-transform: translateY(0px) rotate(0deg);
  494. // transform: translateY(0px) rotate(0deg);
  495. // }
  496. // 50% {
  497. // -webkit-transform: translateY(-9px) rotate(0deg);
  498. // transform: translateY(-9px) rotate(0deg);
  499. // }
  500. // 100% {
  501. // -webkit-transform: translateY(-9px) rotate(135deg);
  502. // transform: translateY(-9px) rotate(135deg);
  503. // }
  504. // }
  505. // }
  506. .gal{
  507. .title_gal{
  508. max-width: 80%!important;
  509. top: 15vw!important;
  510. }
  511. .content_gal{
  512. width: 2%!important;
  513. }
  514. }
  515. .bandeau{
  516. .img{
  517. width: 100%!important;
  518. }
  519. .title_gal{
  520. top:25vw!important;
  521. right: 5%!important;
  522. max-width: 70%!important;
  523. }
  524. }
  525. .entete .entete_c{
  526. width: 95%!important;
  527. margin: 30px auto!important;
  528. }
  529. .content{
  530. width: 80%!important;
  531. }
  532. .sidebar{
  533. position: relative!important;
  534. width: 350px!important;
  535. margin: 0 auto!important;
  536. }
  537. #devis{
  538. .title{
  539. width: 100%!important;
  540. height: auto!important;
  541. -webkit-transform: translateX(0px)!important;
  542. transform: translateX(0px)!important;
  543. border-radius: 0px!important;
  544. h4{
  545. font-size: 1.3rem!important;
  546. margin: 15px auto 0 auto!important;
  547. -webkit-transform: translateY(0%)!important;
  548. transform: translateY(0%)!important;
  549. }
  550. }
  551. .txt{
  552. width: 100%!important;
  553. height: auto!important;
  554. background: $red!important;
  555. margin: auto!important;
  556. p{
  557. color: white!important;
  558. padding: 15px 55px !important;
  559. strong{
  560. font-size: 1rem!important;
  561. }
  562. }
  563. }
  564. .img{
  565. width: auto!important;
  566. height: auto!important;
  567. min-height: 200px!important;
  568. }
  569. .demander-votre-devis{
  570. // -webkit-transform: translate(0, -50%)!important;
  571. // transform: translate(0, -50%)!important;
  572. }
  573. }
  574. #devis.item .title, #devis.sublog .title{
  575. border-radius: 30px!important;
  576. }
  577. #sublog{
  578. .txt{
  579. width:100%!important;
  580. .content_txt{
  581. width: 100%!important;
  582. }
  583. p{
  584. padding: 0!important;
  585. }
  586. }
  587. .content_salle{
  588. width: 70%!important;
  589. z-index: 2;
  590. left: 50%!important;
  591. -webkit-transform: translateX(-50%);
  592. transform: translateX(-50%);
  593. .header-salles{
  594. display: inline-flex;
  595. justify-content: space-between;
  596. img{
  597. display: block!important;
  598. margin: auto;
  599. width: 20px;
  600. height: 20px;
  601. cursor: pointer;
  602. }
  603. }
  604. }
  605. .mapsalles{
  606. width: 100%!important;
  607. }
  608. }
  609. #sublog .demander-votre-devis{
  610. width: 300px!important;
  611. height: 110px!important;
  612. a{
  613. display: inline-flex!important;
  614. }
  615. p:nth-of-type(2){
  616. display: none!important;
  617. }
  618. img{
  619. margin-left: 20px!important;
  620. margin-top: 0px!important;
  621. }
  622. }
  623. #item .demander-votre-devis{
  624. width: 300px!important;
  625. height: 110px!important;
  626. a{
  627. display: inline-flex!important;
  628. }
  629. p:nth-of-type(2){
  630. display: none!important;
  631. }
  632. img{
  633. margin-left: 20px!important;
  634. margin-top: 0px!important;
  635. }
  636. }
  637. .start:not(#form)#archive, .start:not(#form)#calendrier{
  638. width: 80%!important;
  639. }
  640. .start:not(#form) .body-wrapper .card{
  641. width: calc((100% / 3) - 7.5px)!important;
  642. }
  643. .start#form .body-wrapper form{
  644. width: 90%!important;
  645. }
  646. .start#form .body-wrapper form > div.button-wrapper button{
  647. margin-right: 5%!important;
  648. }
  649. .sidebar{
  650. width: 50%!important;
  651. padding: 20px 0;
  652. &::before{
  653. display: block;
  654. width: 100vw;
  655. height: 100%;
  656. content: '';
  657. background-image: url(/user/themes/lecampus/images/Trame-bleu2.svg);
  658. background-repeat: repeat;
  659. // background-position: center;
  660. // background-size: cover;
  661. position: absolute;
  662. top: 0;
  663. margin-left: -27vw;
  664. z-index: -1;
  665. }
  666. }
  667. .start:not(#form) .body-wrapper .event{
  668. width: 90%!important;
  669. }
  670. .start:not(#form)#event .title{
  671. width: 90%!important;
  672. }
  673. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedForm{
  674. width: 70%!important;
  675. }
  676. }
  677. @media screen and (max-width: 768px) {
  678. #devis{
  679. .demander-votre-devis{
  680. -webkit-transform: translate(50%, -125%)!important;
  681. transform: translate(50%, -125%)!important;
  682. }
  683. }
  684. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedForm{
  685. width: 80%!important;
  686. }
  687. }
  688. @media screen and (max-width: 750px) {
  689. .start{
  690. .demander-votre-devis{
  691. display: none;
  692. }
  693. }
  694. #item{
  695. .bandeau{
  696. .img{
  697. width: 100%;
  698. height: auto;
  699. }
  700. }
  701. .body-wrapper{
  702. .images_s{
  703. display: none;
  704. }
  705. .content_s{
  706. width: 90%!important;
  707. p{
  708. padding: 0!important;
  709. }
  710. }
  711. .icones{
  712. margin: 20px 0 0 0!important;
  713. .icon{
  714. height: auto!important;
  715. max-width: 100%!important;
  716. p{
  717. padding: 0!important;
  718. }
  719. }
  720. }
  721. }
  722. }
  723. .content{
  724. margin: 2rem auto!important;
  725. width: 90%!important;
  726. p{
  727. padding: 40px 20px!important;
  728. }
  729. }
  730. .gal .title_gal{
  731. display: none!important;
  732. }
  733. .entete{
  734. padding: 0!important;
  735. p{
  736. font-size: 1.1rem;
  737. line-height: 1.5rem;
  738. }
  739. }
  740. #home .content > p{
  741. width: 100%!important;
  742. &:not(:last-child){
  743. strong{
  744. font-size: 1.1rem;
  745. }
  746. }
  747. }
  748. #reco{
  749. .item{
  750. border: none!important;
  751. margin: 10px 0!important;
  752. padding-left: 0!important;
  753. }
  754. }
  755. .sidebar{
  756. width: 90%!important;;
  757. text-align: center;
  758. &:before{
  759. margin-left: -8vw;
  760. }
  761. h2{
  762. margin: auto;
  763. }
  764. h3{
  765. font-size: 1.1rem;
  766. }
  767. .side-all-agenda{
  768. margin: auto;
  769. float: none!important;
  770. }
  771. }
  772. #devis{
  773. .title, .txt{
  774. padding: 0 5%;
  775. p{
  776. padding: 15px 0!important;
  777. }
  778. }
  779. .demander-votre-devis{
  780. transform: translate(0%,-120%)!important;
  781. }
  782. }
  783. #newsletter{
  784. #mc_embed_signup{
  785. border: none!important;
  786. width: 280px!important;
  787. padding: 0!important;
  788. #mc_embed_signup_scroll{
  789. flex-direction: column;
  790. input{
  791. width: 280px!important;
  792. }
  793. }
  794. #form{
  795. width: auto;
  796. }
  797. label{
  798. width: 280px!important;
  799. border: 2px solid white;
  800. border-radius: 20px;
  801. margin-bottom: 10px;
  802. }
  803. & > input{
  804. margin-top: 10px;
  805. }
  806. .clear{
  807. input{
  808. margin: 10px 0 0 0!important;
  809. }
  810. }
  811. }
  812. }
  813. #footer .block{
  814. flex-direction: column;
  815. p{
  816. margin-bottom: 10px;
  817. text-align: center;
  818. border: none!important;
  819. &:nth-of-type(1){
  820. img{
  821. float: none;
  822. }
  823. }
  824. }
  825. }
  826. #sublog {
  827. .bandeau{
  828. height: auto;
  829. .img{
  830. width: 100%;
  831. height: auto;
  832. }
  833. }
  834. .title_gal{
  835. display: none;
  836. }
  837. .content_salle{
  838. width: 90%!important;
  839. top: 200px!important;
  840. p{
  841. padding: 0px 10px!important;
  842. }
  843. }
  844. .mapsalles{
  845. width: 100%!important;
  846. }
  847. } .start:not(#form)#archive, .start:not(#form)#calendrier{
  848. width: 90%!important;
  849. .cat {
  850. height: auto!important;
  851. .btn-group{
  852. &:nth-child(1){
  853. width: 75%;
  854. }
  855. label{
  856. margin-bottom: 10px;
  857. }
  858. }
  859. }
  860. }
  861. .start:not(#form) .body-wrapper .card{
  862. width: 100%!important;
  863. }
  864. .start:not(#form) .body-wrapper .event .card-content{
  865. flex-direction: column;
  866. .reso{
  867. width: 100%!important;
  868. display: flex;
  869. justify-content: space-around;
  870. }
  871. .txt{
  872. width: 100%!important;
  873. }
  874. }
  875. #default{
  876. .header-wrapper{
  877. width: 100%!important;
  878. text-align: center;
  879. .title{
  880. width: 90%!important;
  881. }
  882. }
  883. }
  884. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedForm{
  885. width: 90%!important;
  886. }
  887. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal{
  888. display: block!important;
  889. }
  890. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent label{
  891. white-space: normal!important;
  892. }
  893. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent{
  894. border: 1px solid white!important;
  895. border-radius: 30px;
  896. margin-bottom: 20px;
  897. }
  898. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
  899. border:none!important;
  900. border-radius: 0px!important;
  901. }
  902. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input{
  903. text-align: center;
  904. }
  905. #tarteaucitronRoot #tarteaucitronAlertBig{
  906. padding: 10px 0!important;
  907. }
  908. }