style.css 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712
  1. html{
  2. width: 10000px;
  3. height: 5000px;
  4. -webkit-text-size-adjust: none;
  5. -ms-touch-action: manipulation;
  6. touch-action: manipulation;
  7. }
  8. body{
  9. cursor: -webkit-grab;
  10. cursor: grab;
  11. }
  12. p, a{
  13. font-size: 18px;
  14. line-height: 26px;
  15. color: black;
  16. font-family: 'Montserrat-Regular'!important;
  17. }
  18. a{
  19. font-family: 'Montserrat-SemiBold'!important;
  20. color: #35b8c8ff;
  21. }
  22. h4{
  23. font-size: 42px;
  24. line-height: 42px;
  25. color: black;
  26. font-family: 'Montserrat-SemiBold'!important;
  27. margin: 0;
  28. }
  29. /* Yes_non */
  30. .buttons{
  31. width: 95px;
  32. height: 95px;
  33. display: -webkit-box;
  34. display: -ms-flexbox;
  35. display: flex;
  36. border-radius: 95px;
  37. background-color: yellow;
  38. -webkit-transition: all 0.5s ease;
  39. transition: all 0.5s ease;
  40. }
  41. .buttons:hover{
  42. -webkit-transition: all 0.5s ease;
  43. transition: all 0.5s ease;
  44. -webkit-box-shadow: 5px 5px;
  45. box-shadow: 5px 5px;
  46. cursor: pointer;
  47. }
  48. #next, #next2{
  49. position: absolute;
  50. display: flex;
  51. justify-content: center;
  52. z-index: 999;
  53. }
  54. #next img, #next2 img{
  55. margin-left: 10px;
  56. }
  57. #y p, #n p{
  58. font-size: 30px;
  59. margin: auto;
  60. }
  61. section{
  62. position: relative;
  63. }
  64. .section{
  65. position: absolute;
  66. }
  67. .section .illu{
  68. z-index: 0;
  69. }
  70. .section .y_n{
  71. z-index: 1;
  72. }
  73. .block{
  74. position: relative;
  75. display: -webkit-box;
  76. display: -ms-flexbox;
  77. display: flex;
  78. }
  79. .block #y, .block #n{
  80. position: absolute;
  81. }
  82. .tracer-n, .tracer-y{
  83. position: absolute;
  84. }
  85. /* ////////start//////// */
  86. #start{
  87. top: 3900px;
  88. left: 2180px;
  89. z-index: 20;
  90. }
  91. #start #y{
  92. top: 450px;
  93. left: 650px;
  94. }
  95. #start #n{
  96. top: 50px;
  97. left: 640px;
  98. }
  99. #start .tracer-y{
  100. position: absolute;
  101. top: -80px;
  102. left: 770px;
  103. }
  104. #start .tracer-n{
  105. position: absolute;
  106. top: -500px;
  107. left: 715px;
  108. }
  109. /* ////////angoisses//////// */
  110. #angoisses{
  111. top: 3810px;
  112. left: 4400px;
  113. z-index: 19;
  114. }
  115. #angoisses #y{
  116. top: 340px;
  117. left: 230px;
  118. }
  119. #angoisses #n{
  120. top: 550px;
  121. left: 200px;
  122. }
  123. #angoisses .tracer-n{
  124. top: 450px;
  125. left: 340px;
  126. }
  127. #angoisses .tracer-y{
  128. top: -420px;
  129. left: 280px;
  130. }
  131. /* ////////coeur//////// */
  132. #coeur{
  133. top: 3130px;
  134. left: 5700px;
  135. z-index: 18;
  136. }
  137. #coeur .tracer-n{
  138. top: -400px;
  139. left: 240px;
  140. }
  141. #coeur #next{
  142. top: -100px;
  143. left: 330px;
  144. transform: rotate(-70deg);
  145. }
  146. /* ////////summo//////// */
  147. #sumo{
  148. top: 4200px;
  149. left: 6710px;
  150. z-index: 18;
  151. }
  152. #sumo .tracer-y{
  153. top: -950px;
  154. left: 200px;
  155. }
  156. #sumo #next{
  157. top: -40px;
  158. left: 270px;
  159. transform: rotate(-70deg);
  160. }
  161. /* ////////voyance//////// */
  162. #voyance{
  163. top: 2630px;
  164. left: 7220px;
  165. }
  166. #voyance #y{
  167. top: 425px;
  168. left: 600px;
  169. }
  170. #voyance #n{
  171. top: 525px;
  172. left: 655px;
  173. }
  174. #voyance .tracer-n{
  175. top: 630px;
  176. left: 540px;
  177. }
  178. #voyance .tracer-y{
  179. top: -370px;
  180. left: 640px;
  181. }
  182. /* ////////parlons-en//////// */
  183. #parlons_en{
  184. top: 3970px;
  185. left: 8400px;
  186. }
  187. #parlons_en .block{
  188. -webkit-box-orient: horizontal;
  189. -webkit-box-direction: reverse;
  190. -ms-flex-flow: row-reverse;
  191. flex-flow: row-reverse;
  192. }
  193. #parlons_en .txt{
  194. width: 400px;
  195. margin-top: 270px;
  196. }
  197. #parlons_en h4{
  198. -webkit-transform: rotate(-15deg);
  199. transform: rotate(-15deg);
  200. margin-bottom: 70px;
  201. margin-left: -10px;
  202. }
  203. #parlons_en #next{
  204. top: 250px;
  205. left: -100px;
  206. transform: rotate(200deg);
  207. }
  208. /* ////////ampoule//////// */
  209. #ampoule{
  210. top: 1908px;
  211. left: 8425px;
  212. z-index: 17;
  213. }
  214. #ampoule .block{
  215. -webkit-box-orient: vertical;
  216. -webkit-box-direction: normal;
  217. -ms-flex-direction: column;
  218. flex-direction: column;
  219. }
  220. #ampoule #y{
  221. top: 250px;
  222. left: -200px;
  223. }
  224. #ampoule #n{
  225. top: 200px;
  226. left: -100px;
  227. }
  228. #ampoule .tracer-n{
  229. top: -990px;
  230. left: -760px;
  231. }
  232. #ampoule .tracer-y{
  233. top: 10px;
  234. left: -1760px;
  235. }
  236. #ampoule .txt{
  237. width: 250px;
  238. }
  239. /* ////////besoin//////// */
  240. #besoin{
  241. top: 1778px;
  242. left: 6225px;
  243. }
  244. #besoin #y{
  245. top: 250px;
  246. left: -200px;
  247. }
  248. #besoin #n{
  249. top: 200px;
  250. left: -100px;
  251. }
  252. #besoin .tracer-y{
  253. top: 230px;
  254. left: -1350px;
  255. }
  256. #besoin #next{
  257. top: 120px;
  258. left: -120px;
  259. transform: rotate(160deg);
  260. }
  261. /* ////////genie//////// */
  262. #genie{
  263. top: 248px;
  264. left: 7500px;
  265. z-index: 17;
  266. }
  267. #genie .block{
  268. -webkit-box-orient: horizontal;
  269. -webkit-box-direction: reverse;
  270. -ms-flex-flow: row-reverse;
  271. flex-flow: row-reverse;
  272. }
  273. #genie .illu{
  274. margin-left: -130px;
  275. margin-top: 70px;
  276. }
  277. #genie #y {
  278. top: 600px;
  279. left: -300px;
  280. }
  281. #genie #n{
  282. top: 400px;
  283. left: -300px;
  284. }
  285. #genie .tracer-n{
  286. top: 220px;
  287. left: -1623px;
  288. }
  289. #genie .tracer-y{
  290. top: 620px;
  291. left: -2680px;
  292. }
  293. #genie .txt{
  294. margin-top: 300px;
  295. margin-left: -150px;
  296. width: 400px;
  297. }
  298. #genie h4{
  299. -webkit-transform: rotate(-15deg);
  300. transform: rotate(-15deg);
  301. margin-bottom: 70px;
  302. margin-left: -10px;
  303. }
  304. /* ////////bah_alors//////// */
  305. #bah_alors{
  306. top: 500px;
  307. left: 5050px;
  308. z-index: 17;
  309. }
  310. #bah_alors #y {
  311. top: 600px;
  312. left: -300px;
  313. }
  314. #bah_alors #n{
  315. top: 400px;
  316. left: -300px;
  317. }
  318. #bah_alors .txt{
  319. margin-top: 80px;
  320. margin-left: 80px;
  321. width: 500px;
  322. }
  323. #bah_alors h4, #bah_alors p:nth-of-type(1) {
  324. -webkit-transform: rotate(-15deg);
  325. transform: rotate(-15deg);
  326. margin-bottom: 70px;
  327. margin-left: -10px;
  328. margin: 0 0 0 -10px;
  329. }
  330. #bah_alors p:nth-of-type(1){
  331. font-family:'Montserrat-SemiBold';
  332. margin-left: 2px;
  333. }
  334. #bah_alors p:nth-of-type(2){
  335. margin-top: 100px;
  336. }
  337. #bah_alors .tracer-y{
  338. top: 450px;
  339. left: -290px;
  340. }
  341. #bah_alors #next{
  342. top: 450px;
  343. left: 620px;
  344. transform: rotate(120deg);
  345. }
  346. /* ////////et_maintenant//////// */
  347. #et_maintenant{
  348. top: 1450px;
  349. left: 4320px;
  350. }
  351. #et_maintenant #y {
  352. top: 260px;
  353. left: 85px;
  354. }
  355. #et_maintenant #n{
  356. top: 405px;
  357. left: 85px;
  358. }
  359. #et_maintenant .tracer-y{
  360. top: 100px;
  361. left: -1210px;
  362. }
  363. #et_maintenant .tracer-n{
  364. top: 450px;
  365. left: -1970px;
  366. }
  367. /* ////////pouce//////// */
  368. #pouce{
  369. top: 1350px;
  370. left: 2730px;
  371. }
  372. #pouce #y {
  373. top: 355px;
  374. left: 230px;
  375. z-index: 17;
  376. }
  377. #pouce #n{
  378. top: 355px;
  379. left: 85px;
  380. z-index: 17;
  381. }
  382. #pouce .txt{
  383. top: -40px;
  384. left: 240px;
  385. width: 300px;
  386. }
  387. #pouce h4{
  388. -webkit-transform: rotate(-15deg);
  389. transform: rotate(-15deg);
  390. }
  391. #pouce .txt p{
  392. margin-top: 90px;
  393. margin-left: 20px;
  394. }
  395. #pouce .tracer-y{
  396. top: 360px;
  397. left: 275px;
  398. z-index: 16;
  399. }
  400. #pouce .tracer-n{
  401. top: 370px;
  402. left: -1680px;
  403. z-index: 16;
  404. }
  405. /* ////////koala//////// */
  406. #koala{
  407. top: 1600px;
  408. left: 600px;
  409. }
  410. #koala #y {
  411. top: 355px;
  412. left: 230px;
  413. }
  414. #koala #n{
  415. top: 355px;
  416. left: 85px;
  417. }
  418. #koala .tracer-y{
  419. top: 360px;
  420. left: 275px;
  421. }
  422. #koala .tracer-n{
  423. top: 370px;
  424. left: -1680px;
  425. }
  426. #koala #next{
  427. top: 270px;
  428. left: -130px;
  429. transform: rotate(140deg);
  430. }
  431. #koala #next2{
  432. position: absolute;
  433. top: 400px;
  434. left: 340px;
  435. transform: rotate(70deg);
  436. }
  437. #koala .txt a{
  438. position: absolute;
  439. top: 340px;
  440. left: 150px;
  441. }
  442. /* ////////chevalier//////// */
  443. #chevalier{
  444. top: 2410px;
  445. left: 1900px;
  446. z-index: 16;
  447. }
  448. #chevalier #y {
  449. top: 500px;
  450. left: -150px;
  451. }
  452. #chevalier #n{
  453. top: 500px;
  454. left: -300px;
  455. }
  456. #chevalier .tracer-y{
  457. top: 610px;
  458. left: -960px;
  459. }
  460. #chevalier .tracer-n{
  461. top: 530px;
  462. left: -1180px;
  463. }
  464. #chevalier .txt{
  465. width: 300px;
  466. top: 270px;
  467. position: absolute;
  468. left: -290px;
  469. }
  470. #chevalier h4{
  471. -webkit-transform: rotate(-15deg);
  472. transform: rotate(-15deg);
  473. margin-left: -20px;
  474. }
  475. #chevalier .txt p{
  476. margin-top: 50px;
  477. }
  478. /* ////////sy_mettre//////// */
  479. #sy_mettre{
  480. top: 2900px;
  481. left: 580px;
  482. }
  483. #sy_mettre .txt{
  484. width: 590px;
  485. }
  486. #sy_mettre h4{
  487. -webkit-transform: rotate(-15deg);
  488. transform: rotate(-15deg);
  489. margin-left: -260px;
  490. }
  491. #sy_mettre p{
  492. margin-top: 55px;
  493. }
  494. #sy_mettre a:nth-of-type(1){
  495. position: absolute;
  496. top: 10px;
  497. left: 200px;
  498. transform: rotate(-10deg);
  499. }
  500. #sy_mettre a:nth-of-type(2){
  501. position: absolute;
  502. top: -90px;
  503. left: 110px;
  504. transform: rotate(10deg);
  505. }
  506. #sy_mettre #next{
  507. left: 130px;
  508. top: 240px;
  509. }
  510. /* ////////etoile//////// */
  511. #etoile{
  512. top: 3920px;
  513. left: 630px;
  514. z-index: 14;
  515. }
  516. #etoile #y {
  517. top: 220px;
  518. left: 400px;
  519. }
  520. #etoile #n{
  521. top: 390px;
  522. left: 20px;
  523. }
  524. #etoile .tracer-y{
  525. top: -1020px;
  526. left: 500px;
  527. }
  528. #etoile .tracer-n{
  529. top: -2000px;
  530. left: -590px;
  531. }
  532. #etoile .txt{
  533. margin-top: 210px;
  534. margin-left: -240px;
  535. background: white;
  536. width: 300px;
  537. height: 100px;
  538. z-index: 1;
  539. }
  540. /* ////////center//////// */
  541. #center{
  542. top: 2230px;
  543. left: 3660px;
  544. }
  545. #center .tracer-y{
  546. top: -1020px;
  547. left: 500px;
  548. }
  549. #center .tracer-n{
  550. top: -2000px;
  551. left: -590px;
  552. }
  553. #center a{
  554. position: absolute;
  555. top: 840px;
  556. left: 500px;
  557. }
  558. #center a:nth-child(1){
  559. font-size: 18px!important;
  560. color: #35b8c8ff!important;
  561. background: none!important;
  562. }
  563. #center .txt a:last-child{
  564. top: 1055px;
  565. left: 180px;
  566. }
  567. #center .txt a:nth-of-type(5){
  568. top: 1045px;
  569. left: 541px;
  570. }
  571. #center .txt a:nth-child(-n+4){
  572. font-size: 42px;
  573. color: black;
  574. text-decoration: none ;
  575. font-family: 'Montserrat-Medium'!important;
  576. background: yellow;
  577. padding: 20px;
  578. }
  579. #center .txt a:nth-of-type(4){
  580. transform: rotate(10deg);
  581. top: 915px;
  582. left: 370px;
  583. }
  584. #center .txt a:nth-of-type(3){
  585. top: 750px;
  586. left: 170px;
  587. transform: rotate(-8deg);
  588. }
  589. #center .txt a:nth-child(2){
  590. top: 320px;
  591. left: 290px;
  592. transform: rotate(-15deg);
  593. }