_blog.scss 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998
  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-bleu.svg');
  79. background-repeat: no-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-bleu.svg');
  190. background-position: center;
  191. background-repeat: no-repeat;
  192. background-size: cover;
  193. }
  194. }
  195. .event{
  196. width: 45%;
  197. .card-content{
  198. @include inlineflex;
  199. flex-wrap: nowrap;
  200. justify-content: space-between;
  201. .reso{
  202. width: 20%;
  203. a{
  204. display: block;
  205. margin-bottom: 10px;
  206. img{
  207. margin-left: 10px;
  208. width: 20px;
  209. }
  210. }
  211. }
  212. .txt{
  213. width: 80%;
  214. }
  215. }
  216. }
  217. }
  218. }
  219. .start#form{
  220. .entete{
  221. border-top: 1px solid $light-blue
  222. }
  223. h2{
  224. margin-top: 0;
  225. }
  226. .body-wrapper{
  227. width: 100%;
  228. min-width: 250px;
  229. margin: auto auto 140px auto;
  230. form{
  231. width: calc( (100% / 2));
  232. margin-top: 20px;
  233. margin: auto;
  234. & > div{
  235. width: 100%;
  236. margin: 20px 0;
  237. border-bottom: 1px solid $red;
  238. .form-data{
  239. @include inlineflex();
  240. margin: 20px 0px;
  241. &> div{
  242. overflow: hidden;
  243. margin: 10px 10px;
  244. min-width: 100px;
  245. border: 2px solid $red;
  246. border-radius: 30px;
  247. padding: 10px 20px;
  248. &.check{
  249. background: $red;
  250. color: white;
  251. }
  252. input{
  253. border: none;
  254. }
  255. input[type='radio'] {
  256. visibility: hidden;
  257. position: absolute;
  258. }
  259. label{
  260. cursor: pointer;
  261. }
  262. }
  263. }
  264. &:nth-of-type(n+5):not(:nth-of-type(n+11)){
  265. width: 50%;
  266. float: left;
  267. border-bottom: 0px;
  268. .form-data{
  269. width: 100%;
  270. & > div{
  271. width: 100%;
  272. }
  273. }
  274. }
  275. &:nth-of-type(9), &:nth-of-type(10){
  276. border-bottom: 1px solid $red !important;
  277. }
  278. &.button-wrapper{
  279. background: $red;
  280. height: 100px;
  281. position: absolute;
  282. left: 0;
  283. width: 100%;
  284. button{
  285. margin-right: 25%;
  286. position: absolute;
  287. right: 0;
  288. top: 50%;
  289. -webkit-transform: translateY(-50%);
  290. transform: translateY(-50%);
  291. background: white;
  292. border-radius: 30px;
  293. padding: 10px 35px;
  294. box-shadow:none;
  295. border:0;
  296. }
  297. }
  298. }
  299. }
  300. #send-valide{
  301. -webkit-transform: translate(-50%, -50%);
  302. transform: translate(-50%, -50%);
  303. background: $red;
  304. border-radius: 20px;
  305. position: fixed;
  306. width: 30%;
  307. height: 30%;
  308. left: 50%;
  309. top: 50%;
  310. padding: 50px;
  311. .toast{
  312. position: relative;
  313. text-align: center;
  314. color: white;
  315. }
  316. .ok{
  317. color: white;
  318. position: absolute;
  319. right: 20px;
  320. bottom: 20px;
  321. }
  322. }
  323. }
  324. }
  325. .header-wrapper{
  326. .title{
  327. h2{
  328. width: auto;
  329. margin-bottom: 20px;
  330. background: $red;
  331. border-radius: 30px;
  332. width: auto;
  333. padding: 10px 20px;
  334. color: white;
  335. font-size: 1.2rem;
  336. width:115px;
  337. }
  338. }
  339. }
  340. .content{
  341. width: 50%;
  342. margin: 4rem auto;
  343. p{
  344. margin: 10px 0;
  345. }
  346. }
  347. .content_s{
  348. margin: auto!important;
  349. }
  350. .entete{
  351. @include inlineflex;
  352. padding: 20px;
  353. background-image: url('/user/themes/lecampus/images/Trame-bleu.svg');
  354. background-position: center;
  355. background-repeat: no-repeat;
  356. background-size: cover;
  357. height: auto;
  358. border-top: 10px solid $green;
  359. .entete_c{
  360. @include inlineflex;
  361. text-align: center;
  362. width: 70%;
  363. margin: 50px auto;
  364. position: relative;
  365. h1{
  366. width: auto;
  367. margin-bottom: 20px;
  368. background: $red;
  369. border-radius: 30px;
  370. width: auto;
  371. padding: 10px 20px;
  372. }
  373. }
  374. }
  375. .body-wrapper{
  376. .content{
  377. h4{
  378. &:not(:first-of-type){
  379. border-top: 1px solid black;
  380. padding-top: 30px;
  381. margin: 30px 0 0 0;
  382. }
  383. }
  384. }
  385. .sub-content{
  386. border-top: 1px solid black;
  387. margin-bottom: 20px;
  388. margin-top: 20px;
  389. & > img{
  390. width: 33%;
  391. float: left;
  392. margin: 20px 10px 0px 0px;
  393. }
  394. }
  395. }
  396. #event{
  397. margin-bottom: 20px;
  398. .content{
  399. margin-top: 50px;
  400. h2{
  401. float: left;
  402. margin-right: 20px;
  403. }
  404. .reso{
  405. @include inlineflex;
  406. flex-wrap: nowrap;
  407. width: 50px;
  408. height: 25px;
  409. }
  410. }
  411. .sidebar{
  412. margin-top: 50px;
  413. }
  414. }
  415. .sidebar{
  416. position: absolute;
  417. right: 0;
  418. width: 20%;
  419. margin: -55px auto 0 20px;
  420. h2{
  421. background: $red;
  422. border-radius: 100px;
  423. width: 100px;
  424. height: 100px;
  425. }
  426. .side-agenda{
  427. padding: 10px 20px 10px 0;
  428. &:not(:nth-of-type(1)){
  429. border-top: 1px solid $light-blue;
  430. &::before{
  431. content: " ";
  432. display: block;
  433. position: absolute;
  434. width: 5px;
  435. height: 5px;
  436. margin-top: -13px;
  437. border-radius: 10px;
  438. background: $light-blue;
  439. }
  440. }
  441. &:nth-of-type(3){
  442. margin-bottom: 10px;
  443. }
  444. }
  445. .side-all-agenda{
  446. background: white;
  447. width: auto;
  448. padding: 10px 20px;
  449. margin-bottom: 10px;
  450. float: left;
  451. border: 2px solid $red;
  452. border-radius: 30px;
  453. transition: background-color 0.3s ease;
  454. a{
  455. color: black;
  456. }
  457. &:hover{
  458. background-color: $red;
  459. transition: background-color 0.3s ease;
  460. a{
  461. color: white;
  462. }
  463. }
  464. }
  465. }
  466. #newsletter{
  467. padding: 20px;
  468. background: $light-blue;
  469. #mc_embed_signup{
  470. width: 600px;
  471. margin: auto;
  472. padding: 0 0 0 10px;
  473. border-radius: 100px;
  474. border: 1px solid $white;
  475. form{
  476. @include inlineflex();
  477. width: 100%;
  478. #mc_embed_signup_scroll{
  479. @include inlineflex();
  480. width: 100%;
  481. margin: auto;
  482. label{
  483. text-align: center;
  484. color: $white;
  485. margin-right: 10px;
  486. width: 260px;
  487. }
  488. &>input{
  489. width: 315px;
  490. padding-left: 20px;
  491. }
  492. input{
  493. border-radius: 30px;
  494. height: 31px;
  495. box-shadow: none;
  496. border: none;
  497. }
  498. .clear{
  499. input{
  500. background: $white;
  501. margin-left: -30px;
  502. }
  503. }
  504. }
  505. }
  506. }
  507. }
  508. #home{
  509. .content{
  510. @include inlineflex();
  511. & > p{
  512. position: relative;
  513. width: calc(100% / 3);
  514. padding: 50px 20px;
  515. margin-top: 10px;
  516. img{
  517. position: absolute;
  518. width: auto;
  519. height: 50px;
  520. top: -20px;
  521. left: 50%;
  522. -webkit-transform: translate(-50%);
  523. transform: translate(-50%);
  524. }
  525. &:nth-of-type(n+4){
  526. width: calc(100% / 4);
  527. }
  528. &:last-child{
  529. width: auto!important;
  530. margin-top: 0!important;
  531. margin: auto;
  532. a{
  533. display: block;
  534. padding: 10px 20px;
  535. text-align: center;
  536. border: 2px solid $green;
  537. border-radius: 30px;
  538. margin: auto;
  539. transition: background-color 0.3s ease;
  540. }
  541. }
  542. }
  543. }
  544. }
  545. #item{
  546. .content{
  547. @include inlineflex;
  548. .images_s{
  549. // width: calc(100% / 2 - 15px);
  550. width: 40%;
  551. // min-width: 300px;
  552. margin-right: 15px;
  553. img{
  554. margin-bottom: 15px;
  555. }
  556. }
  557. .content_s{
  558. width: calc(60% - 30px);
  559. }
  560. .icones{
  561. margin: 70px 0;
  562. @include inlineflex;
  563. justify-content: space-around;
  564. width: 100%;
  565. .icon{
  566. height: 50px;
  567. width: auto;
  568. max-width: 200px;
  569. img{
  570. height: 50px;
  571. width: 100%;
  572. }
  573. p{
  574. text-align: center;
  575. }
  576. }
  577. }
  578. }
  579. }
  580. #devis{
  581. @include inlineflex();
  582. justify-content: center;
  583. align-items: center;
  584. background-image: url('/user/themes/lecampus/images/Trame-bleu.svg');
  585. background-position: center;
  586. background-repeat: no-repeat;
  587. background-size: cover;
  588. width: 100%;
  589. // height: 300px;
  590. .title{
  591. width: 200px;
  592. height: 200px;
  593. background: $red;
  594. border-radius: 200px;
  595. -webkit-transform: translateX(80px);
  596. transform: translateX(80px);
  597. h4{
  598. text-align: center;
  599. color: white;
  600. margin: 50% 10px 0 10px;
  601. -webkit-transform: translateY(-50%);
  602. transform: translateY(-50%);
  603. }
  604. }
  605. .txt{
  606. @include inlineflex();
  607. background: white;
  608. width: 25%;
  609. margin-right: 20px;
  610. height: auto;
  611. p{
  612. padding: 20px 20px 20px 100px;
  613. color: black;
  614. text-align: left;
  615. strong{
  616. font-size: 1.3rem;
  617. }
  618. }
  619. }
  620. .demander-votre-devis{
  621. margin-top: 0;
  622. -webkit-transform: translateX(-200px);
  623. transform: translateX(-200px);
  624. }
  625. .img{
  626. width: 400px;
  627. height: 300px;
  628. overflow: hidden;
  629. img{
  630. width: auto;
  631. height: 400px;
  632. }
  633. }
  634. }
  635. #devis{
  636. &.item, &.sublog{
  637. background: $red;
  638. height: auto;
  639. padding: 20px 0;
  640. a{
  641. color: white;
  642. .title{
  643. vertical-align: baseline;
  644. border-radius: 30px;
  645. border: 1px solid white;
  646. padding: 5px 20px;
  647. height: 35px;
  648. width: auto;
  649. -webkit-transform: translateX(0);
  650. transform: translateX(0);
  651. }
  652. &:hover{
  653. color: black;
  654. .title{
  655. background: white;
  656. transition: background 0.3s ease;
  657. }
  658. }
  659. }
  660. }
  661. }
  662. // .bx-viewport{
  663. // height: 30vw!important;
  664. // }
  665. #reco{
  666. background: $dark-blue;
  667. .title{
  668. display: flex;
  669. cursor: pointer;
  670. width: 100%;
  671. padding: 10px;
  672. h2{
  673. width: auto;
  674. margin: auto;
  675. color: white;
  676. padding: 10px;
  677. text-align: center;
  678. border-top: 1px solid white;
  679. border-bottom: 1px solid white;
  680. font-size: 1rem;
  681. &::after{
  682. display: inline-flex;
  683. margin-left: 10px;
  684. content: " ";
  685. background: url('../images/fleche-top.svg');
  686. background-size: 15px 18px;
  687. background-repeat: no-repeat;
  688. width: 15px;
  689. height: 18px;
  690. }
  691. }
  692. &.open{
  693. h2:after{
  694. -webkit-transform: rotate(180deg);
  695. transform: rotate(180deg);
  696. }
  697. }
  698. }
  699. .txt{
  700. z-index: -1;
  701. position: absolute;
  702. width: 100%;
  703. padding-top: 20px;
  704. @include inlineflex;
  705. justify-content: center;
  706. -webkit-transform: translateY(-100%);
  707. transform: translateY(-100%);
  708. p{
  709. color: white;
  710. width: 300px;
  711. a{
  712. color: white;
  713. text-decoration: underline;
  714. }
  715. }
  716. &.open{
  717. z-index: 999;
  718. background: $dark-blue;
  719. .item{
  720. display: block;
  721. }
  722. }
  723. h3{
  724. color: $green;
  725. }
  726. }
  727. .item{
  728. display: none;
  729. margin: 0 0px 20px 20px;
  730. border-left: 1px solid white;
  731. padding-left: 20px;
  732. img{
  733. width: 50px;
  734. margin-bottom: 10px;
  735. }
  736. }
  737. }
  738. .content_s{
  739. &.map{
  740. width: 100%!important;
  741. height: auto;
  742. p{
  743. &:last-child{
  744. height: 500px;
  745. }
  746. }
  747. a#carte{
  748. display: block;
  749. width: 100%;
  750. height: 100%;
  751. }
  752. }
  753. }
  754. #event{
  755. .title{
  756. width: 45%;
  757. margin: auto;
  758. }
  759. .head-event{
  760. .tags{
  761. width: 100%;
  762. &.professionnels{
  763. background-color: $red;
  764. }
  765. &.grand_public{
  766. background-color: $light-blue;
  767. }
  768. &.formations{
  769. background-color: $grey;
  770. }
  771. &.publics{
  772. padding: 2.5px 10px;
  773. color: white;
  774. }
  775. }
  776. }
  777. .card-header{
  778. @include inlineflex;
  779. flex-direction: column;
  780. width: 100%;
  781. &.professionnels{
  782. background-color: $red;
  783. }
  784. &.grand_public{
  785. background-color: $light-blue;
  786. }
  787. &.formations{
  788. background-color: $grey;
  789. }
  790. .publics{
  791. text-align: right;
  792. &.publics{
  793. padding: 2.5px 10px;
  794. color: white;
  795. }
  796. }
  797. }
  798. .card-body{
  799. padding: 15px;
  800. background-image: url('/user/themes/lecampus/images/Trame-bleu.svg');
  801. background-position: center;
  802. background-repeat: no-repeat;
  803. background-size: cover;
  804. }
  805. .card-content{
  806. margin-top: 20px;
  807. }
  808. }
  809. .demander-votre-devis{
  810. padding: 10px;
  811. z-index: 999;
  812. background: $red;
  813. position: absolute;
  814. width: 200px;
  815. height: 200px;
  816. right: 100px;
  817. margin-top: -100px;
  818. color: white;
  819. text-align: center;
  820. strong{
  821. font-weight: bold!important;
  822. }
  823. a{
  824. color: white;
  825. }
  826. img{
  827. margin-top: 10px;
  828. width: 50px;
  829. }
  830. }
  831. #sublog{
  832. .body-wrapper{
  833. background-image: url('../images/Trame-gris.svg');
  834. background-repeat: no-repeat;
  835. }
  836. .content{
  837. @include inlineflex;
  838. width: 90%;
  839. flex-direction: row-reverse;
  840. justify-content: space-between;
  841. .txt{
  842. width: 50%;
  843. .content_txt{
  844. width: 50%;
  845. }
  846. & > p{
  847. font-size: 1.2rem;
  848. font-family: $Bold;
  849. }
  850. }
  851. }
  852. svg{
  853. pointer-events: none;
  854. }
  855. .mapsalles{
  856. width: 50%;
  857. position: relative;
  858. .contour{
  859. position: relative;
  860. z-index: 1;
  861. pointer-events: none;
  862. display: inline-block;
  863. width: 100%;
  864. vertical-align: middle;
  865. overflow: hidden;
  866. }
  867. .fond{
  868. position: absolute;
  869. display: inline-block;
  870. width: 100%;
  871. vertical-align: middle;
  872. overflow: hidden;
  873. z-index:0;
  874. left: 0;
  875. top: 5.3%;
  876. path{
  877. fill: none;
  878. pointer-events: all;
  879. transition: fill 0.3s ease;
  880. &:hover{
  881. fill: $light-blue!important;
  882. transition: fill 0.3s ease;
  883. }
  884. }
  885. }
  886. }
  887. .content_salle{
  888. // display: none;
  889. visibility: hidden;
  890. position: absolute;
  891. left: 50%;
  892. top: 300px;
  893. width: 40%;
  894. background: white;
  895. & > p{
  896. padding-left: 10px;
  897. }
  898. .header-salles{
  899. background: $light-blue;
  900. padding: 5px 10px;
  901. color: white;
  902. margin-top: 0;
  903. width: 100%;
  904. h3{
  905. width: 100%;
  906. }
  907. img{
  908. display: none;
  909. }
  910. }
  911. h4{
  912. background: $green;
  913. font-size: 1.2rem;
  914. font-family: $Bold;
  915. padding: 5px 10px;
  916. margin-top: -1px;
  917. }
  918. .bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager{
  919. bottom: 10px!important;
  920. }
  921. .bx-controls-direction{
  922. a{
  923. background-size: cover;
  924. background-repeat: no-repeat;
  925. }
  926. .bx-prev{
  927. background-image: url('/user/themes/lecampus/images/arrow-gal.svg');
  928. }
  929. .bx-next{
  930. background-image: url('/user/themes/lecampus/images/arrow-gal-next.svg');
  931. &:hover, &:focus{
  932. background-position: center!important;
  933. }
  934. }
  935. }
  936. .bx-pager-link {
  937. background: white!important;
  938. &.active{
  939. background: black!important;
  940. }
  941. }
  942. }
  943. }
  944. #default{
  945. .header-wrapper{
  946. width: 45%;
  947. margin-top: 50px;
  948. margin: auto;
  949. }
  950. .body-wrapper{
  951. margin-bottom: 50px;
  952. }
  953. .title{
  954. width: 80%;
  955. margin: auto;
  956. }
  957. .txt{
  958. margin:auto;
  959. }
  960. p{
  961. margin-bottom: 10px;
  962. }
  963. }
  964. .ok{
  965. cursor: pointer;
  966. }