first commit

This commit is contained in:
2018-11-29 22:24:51 +01:00
commit c7b32250df
132 changed files with 5667 additions and 0 deletions
+233
View File
@@ -0,0 +1,233 @@
/* @keyframes */
@-webkit-keyframes rotation360 {
0% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
100% {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}
@keyframes rotation360 {
0% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
100% {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}
@-webkit-keyframes clignote {
0% {opacity: 0};
50% {opacity: 1};
100%{opacity: 0};
}
@keyframes clignote {
0% {opacity: 0};
50% {opacity: 1};
100%{opacity: 0};
}
@-webkit-keyframes scale {
0% {-webkit-transform: scale(1);transform: scale(1);}
50% {-webkit-transform: scale(0.7);transform: scale(0.7);}
100% {-webkit-transform: scale(1);transform: scale(1);}
}
@keyframes scale {
0% {-webkit-transform: scale(1);transform: scale(1);}
50% {-webkit-transform: scale(0.7);transform: scale(0.7);}
100% {-webkit-transform: scale(1);transform: scale(1);}
}
@-webkit-keyframes pop {
0%{-webkit-transform: scale(0);transform: scale(0);}
25%{-webkit-transform: scale(1);transform: scale(1);}
55%{-webkit-transform: scale(1);transform: scale(1);}
80%{-webkit-transform: scale(0);transform: scale(0);}
100%{-webkit-transform: scale(0);transform: scale(0);}
}
@keyframes pop {
0%{-webkit-transform: scale(0);transform: scale(0);}
25%{-webkit-transform: scale(1);transform: scale(1);}
55%{-webkit-transform: scale(1);transform: scale(1);}
80%{-webkit-transform: scale(0);transform: scale(0);}
100%{-webkit-transform: scale(0);transform: scale(0);}
}
@-webkit-keyframes galop {
0% {-webkit-transform: translate(0);transform: translate(0);}
50% {-webkit-transform: translate(0px , -5px) ;transform: translate(0px , -5px) ;}
100% {-webkit-transform: translate(0);transform: translate(0);}
}
@keyframes galop {
0% {-webkit-transform: translate(0);transform: translate(0);}
50% {-webkit-transform: translate(0px , -5px) ;transform: translate(0px , -5px) ;}
100% {-webkit-transform: translate(0);transform: translate(0);}
}
@-webkit-keyframes battement {
0% {-webkit-transform: scale(1);transform: scale(1);}
50% {-webkit-transform: scale(1.1);transform: scale(1.1);}
100% {-webkit-transform: scale(1);transform: scale(1);}
}
@keyframes battement {
0% {-webkit-transform: scale(1);transform: scale(1);}
50% {-webkit-transform: scale(1.1);transform: scale(1.1);}
100% {-webkit-transform: scale(1);transform: scale(1);}
}
@-webkit-keyframes rotation_pouce {
0% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
50% {-webkit-transform: rotate(-15deg);transform: rotate(-15deg);}
100% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
}
@keyframes rotation_pouce {
0% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
50% {-webkit-transform: rotate(-15deg);transform: rotate(-15deg);}
100% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
}
@-webkit-keyframes balancelegs {
0% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
25% {-webkit-transform: rotate(15deg);transform: rotate(15deg);}
50% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
75% {-webkit-transform: rotate(-15deg);transform: rotate(-15deg);}
100% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
}
@keyframes balancelegs {
0% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
25% {-webkit-transform: rotate(15deg);transform: rotate(15deg);}
50% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
75% {-webkit-transform: rotate(-15deg);transform: rotate(-15deg);}
100% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
}
@-webkit-keyframes levitation {
0% {-webkit-transform: translate(0);transform: translate(0);}
10% {-webkit-transform: translate(0px , -20px) ;transform: translate(0px , -20px) ;}
20% {-webkit-transform: translate(-5px , -22px);transform: translate(-5px , -22px);}
50% {-webkit-transform: translate( 5px , -20px) ;transform: translate( 5px , -20px) ;}
70% {-webkit-transform: translate( -5px , -25px) ;transform: translate( -5px , -25px) ;}
100% {-webkit-transform: translate(0);transform: translate(0);}
}
@keyframes levitation {
0% {-webkit-transform: translate(0);transform: translate(0);}
10% {-webkit-transform: translate(0px , -20px) ;transform: translate(0px , -20px) ;}
20% {-webkit-transform: translate(-5px , -22px);transform: translate(-5px , -22px);}
50% {-webkit-transform: translate( 5px , -20px) ;transform: translate( 5px , -20px) ;}
70% {-webkit-transform: translate( -5px , -25px) ;transform: translate( -5px , -25px) ;}
100% {-webkit-transform: translate(0);transform: translate(0);}
}
/* appli keyframes */
#center #path89{
-webkit-animation: battement 1s linear infinite;
animation: battement 1s linear infinite;
-webkit-transform-origin: 90% 80%;
transform-origin: 90% 80%;
}
#ampoule #rotate{
-webkit-animation: rotation360 1s linear infinite ;
animation: rotation360 1s linear infinite ;
-webkit-animation-delay: 0;
animation-delay: 0;
-webkit-transform-origin: 50% 34%;
transform-origin: 50% 34%;
}
#angoisses text:nth-of-type(1){
-webkit-animation: clignote 1s infinite;
animation: clignote 1s infinite;
background-color: red!important;
}
#angoisses text:nth-of-type(2){
-webkit-animation: clignote 1s infinite;
animation: clignote 1s infinite;
-webkit-animation-delay: 0.33s;
animation-delay: 0.33s;
}
#angoisses text:nth-of-type(3){
-webkit-animation: clignote 1s infinite;
animation: clignote 1s infinite;
-webkit-animation-delay: 0.66s;
animation-delay: 0.66s;
}
#bah_alors svg path:nth-of-type(3){
-webkit-animation: scale 0.5s ease infinite;
animation: scale 0.5s ease infinite;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
/* besoin */
#bulle1{
-webkit-animation: pop 5s infinite forwards;
animation: pop 5s infinite forwards;
-webkit-transform-origin: 70% 40%;
transform-origin: 70% 40%;
}
#bulle2{
-webkit-animation: pop 5s infinite forwards;
animation: pop 5s infinite forwards;
-webkit-transform-origin: 70% 40%;
transform-origin: 70% 40%;
-webkit-animation-delay: 0.1s;
animation-delay: 0.1s;
}
#bulle3{
-webkit-animation: pop 5s infinite forwards;
animation: pop 5s infinite forwards;
-webkit-transform-origin: 70% 40%;
transform-origin: 70% 40%;
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
#chevalier .illu{
-webkit-animation: galop 1s infinite forwards;
animation: galop 1s infinite forwards;
}
#coeur .illu {
-webkit-animation: battement 1s ease infinite;
animation: battement 1s ease infinite;
/* transform-origin: 50% 50%; */
}
#etoile .illu svg{
-webkit-animation: rotation360 2s infinite forwards;
animation: rotation360 2s infinite forwards;
}
#parlons_en svg path:nth-of-type(3){
-webkit-animation: scale 0.5s ease infinite;
animation: scale 0.5s ease infinite;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
#pouce .illu svg{
-webkit-animation: rotation_pouce 1s infinite forwards;
animation: rotation_pouce 1s infinite forwards;
-webkit-transform-origin: 30% 70%;
transform-origin: 30% 70%;
}
#sumo #jambes{
-webkit-animation: balancelegs 1s infinite;
animation: balancelegs 1s infinite;
-webkit-transform-origin: 35% 65%;
transform-origin: 35% 65%;
}
#voyance #boule{
-webkit-animation: levitation 5s ease infinite;
animation: levitation 5s ease infinite;
}
+19
View File
@@ -0,0 +1,19 @@
@font-face {
font-family: 'Montserrat-Regular';
src: url('/fonts/Montserrat-Regular.eot'); /* IE9 Compat Modes */
src: url('/fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('/fonts/Montserrat-Regular.woff2') format('woff2'), /* Super Modern Browsers */
url('/fonts/Montserrat-Regular.woff') format('woff'), /* Pretty Modern Browsers */
url('/fonts/Montserrat-Regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('/fonts/Montserrat-Regular.svg#svgFontName') format('svg'); /* Legacy iOS */
}
@font-face {
font-family: 'Montserrat-SemiBold';
src: url('/fonts/Montserrat-SemiBold.eot'); /* IE9 Compat Modes */
src: url('/fonts/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('/fonts/Montserrat-SemiBold.woff2') format('woff2'), /* Super Modern Browsers */
url('/fonts/Montserrat-SemiBold.woff') format('woff'), /* Pretty Modern Browsers */
url('/fonts/Montserrat-SemiBold.ttf') format('truetype'), /* Safari, Android, iOS */
url('/fonts/Montserrat-SemiBold.svg#svgFontName') format('svg'); /* Legacy iOS */
}
+369
View File
@@ -0,0 +1,369 @@
/* Document
========================================================================== */
/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
line-height: 1.15; /* 1 */
-webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections
========================================================================== */
/**
* Remove the margin in all browsers.
*/
body {
width: 100%;
height: 100%;
margin: 0;
}
/**
* Render the `main` element consistently in IE.
*/
main {
display: block;
}
/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/* Grouping content
========================================================================== */
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
-webkit-box-sizing: content-box;
box-sizing: content-box; /* 1 */
height: 0; /* 1 */
overflow: visible; /* 2 */
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
}
/* Text-level semantics
========================================================================== */
/**
* Remove the gray background on active links in IE 10.
*/
a {
background-color: transparent;
}
/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
border-bottom: none; /* 1 */
text-decoration: underline; /* 2 */
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted; /* 2 */
}
/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
font-weight: bolder;
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
}
/**
* Add the correct font size in all browsers.
*/
small {
font-size: 80%;
}
/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
/* Embedded content
========================================================================== */
/**
* Remove the border on images inside links in IE 10.
*/
img {
border-style: none;
}
/* Forms
========================================================================== */
/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
font-family: inherit; /* 1 */
font-size: 100%; /* 1 */
line-height: 1.15; /* 1 */
margin: 0; /* 2 */
}
/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input { /* 1 */
overflow: visible;
}
/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select { /* 1 */
text-transform: none;
}
/**
* Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}
/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}
/**
* Correct the padding in Firefox.
*/
fieldset {
padding: 0.35em 0.75em 0.625em;
}
/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
* `fieldset` elements in all browsers.
*/
legend {
-webkit-box-sizing: border-box;
box-sizing: border-box; /* 1 */
color: inherit; /* 2 */
display: table; /* 1 */
max-width: 100%; /* 1 */
padding: 0; /* 3 */
white-space: normal; /* 1 */
}
/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
vertical-align: baseline;
}
/**
* Remove the default vertical scrollbar in IE 10+.
*/
textarea {
overflow: auto;
}
/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/
[type="checkbox"],
[type="radio"] {
-webkit-box-sizing: border-box;
box-sizing: border-box; /* 1 */
padding: 0; /* 2 */
}
/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type="search"] {
-webkit-appearance: textfield; /* 1 */
outline-offset: -2px; /* 2 */
}
/**
* Remove the inner padding in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
-webkit-appearance: button; /* 1 */
font: inherit; /* 2 */
}
/* Interactive
========================================================================== */
/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/
details {
display: block;
}
/*
* Add the correct display in all browsers.
*/
summary {
display: list-item;
}
/* Misc
========================================================================== */
/**
* Add the correct display in IE 10+.
*/
template {
display: none;
}
/**
* Add the correct display in IE 10.
*/
[hidden] {
display: none;
}
© 2018 GitHub, Inc.
Terms
Privacy
Security
Status
Help
Contact GitHub
Pricing
API
Training
Blog
About
Press h to open a hovercard with more details.
+580
View File
@@ -0,0 +1,580 @@
html{
width: 10000px;
height: 5000px;
}
body{
cursor: -webkit-grab;
cursor: grab;
/* margin-left: 200px; */
}
/* start */
@-webkit-keyframes dash {
from {
stroke-dashoffset: 3000;
}
to {
stroke-dashoffset: 0;
}
}
@keyframes dash {
from {
stroke-dashoffset: 3000;
}
to {
stroke-dashoffset: 0;
}
}
p, a{
font-size: 18px;
line-height: 26px;
color: black;
font-family: 'Montserrat-Regular';
}
a{
font-family: 'Montserrat-SemiBold';
color: #35b8c8ff;
}
h4{
font-size: 42px;
line-height: 42px;
color: black;
font-family: 'Montserrat-SemiBold';
margin: 0;
}
/* Yes_non */
.buttons{
width: 95px;
height: 95px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
border-radius: 95px;
background-color: yellow;
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.buttons:hover{
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
-webkit-box-shadow: 5px 5px;
box-shadow: 5px 5px;
cursor: pointer;
}
#y p, #n p{
font-size: 30px;
margin: auto;
}
section{
position: relative;
}
.section{
position: absolute;
}
.section .illu{
z-index: 0;
}
.section .y_n{
z-index: 1;
}
.block{
position: relative;
display: flex;
}
.block #y, .block #n{
position: absolute;
}
.tracer-n, .tracer-y{
position: absolute;
}
/* ////////start//////// */
#start{
top: 3900px;
left: 2180px;
z-index: 20;
}
#start #y{
top: 450px;
left: 650px;
}
#start #n{
top: 50px;
left: 640px;
}
#start .tracer-y{
position: absolute;
top: -80px;
left: 770px;
}
#start .tracer-n{
position: absolute;
top: -500px;
left: 715px;
}
#start #y:hover ~ .tracer-y path{
stroke-dasharray: 3000;
stroke-dashoffset: 0;
-webkit-animation: dash 5s linear;
animation: dash 5s linear;
}
/* ////////angoisses//////// */
#angoisses{
top: 3810px;
left: 4400px;
z-index: 19;
}
#angoisses #y{
top: 340px;
left: 230px;
}
#angoisses #n{
top: 550px;
left: 200px;
}
#angoisses .tracer-n{
top: 450px;
left: 340px;
}
#angoisses .tracer-y{
top: -420px;
left: 280px;
}
/* ////////coeur//////// */
#coeur{
top: 3130px;
left: 5700px;
z-index: 18;
}
#coeur .tracer-n{
top: -400px;
left: 240px;
}
/* ////////summo//////// */
#sumo{
top: 4200px;
left: 6710px;
z-index: 18;
}
#sumo .tracer-y{
top: -950px;
left: 200px;
}
/* ////////voyance//////// */
#voyance{
top: 2630px;
left: 7220px;
}
#voyance #y{
top: 425px;
left: 600px;
}
#voyance #n{
top: 525px;
left: 655px;
}
#voyance .tracer-n{
top: 630px;
left: 540px;
}
#voyance .tracer-y{
top: -370px;
left: 640px;
}
/* ////////parlons-en//////// */
#parlons_en{
top: 3970px;
left: 8400px;
}
#parlons_en .block{
flex-flow: row-reverse;
}
#parlons_en .txt{
width: 400px;
margin-top: 270px;
}
#parlons_en h4{
-webkit-transform: rotate(-15deg);
transform: rotate(-15deg);
margin-bottom: 70px;
margin-left: -10px;
}
/* ////////ampoule//////// */
#ampoule{
top: 1908px;
left: 8425px;
z-index: 17;
}
#ampoule .block{
flex-direction: column;
}
#ampoule #y{
top: 250px;
left: -200px;
}
#ampoule #n{
top: 200px;
left: -100px;
}
#ampoule .tracer-n{
top: -990px;
left: -760px;
}
#ampoule .tracer-y{
top: 10px;
left: -1760px;
}
#ampoule .txt{
width: 250px;
}
/* ////////besoin//////// */
#besoin{
top: 1778px;
left: 6225px;
}
#besoin #y{
top: 250px;
left: -200px;
}
#besoin #n{
top: 200px;
left: -100px;
}
#besoin .tracer-y{
top: 230px;
left: -1350px;
}
/* ////////genie//////// */
#genie{
top: 248px;
left: 7500px;
z-index: 17;
}
#genie .block{
flex-flow: row-reverse;
}
#genie .illu{
margin-left: -130px;
margin-top: 70px;
}
#genie #y {
top: 600px;
left: -300px;
}
#genie #n{
top: 400px;
left: -300px;
}
#genie .tracer-n{
top: 220px;
left: -1623px;
}
#genie .tracer-y{
top: 620px;
left: -2680px;
}
#genie .txt{
margin-top: 300px;
margin-left: -150px;
width: 400px;
}
#genie h4{
-webkit-transform: rotate(-15deg);
transform: rotate(-15deg);
margin-bottom: 70px;
margin-left: -10px;
}
/* ////////bah_alors//////// */
#bah_alors{
top: 500px;
left: 5050px;
z-index: 17;
}
#bah_alors #y {
top: 600px;
left: -300px;
}
#bah_alors #n{
top: 400px;
left: -300px;
}
#bah_alors .txt{
margin-top: 80px;
margin-left: 80px;
width: 500px;
}
#bah_alors h4, #bah_alors p:nth-of-type(1) {
-webkit-transform: rotate(-15deg);
transform: rotate(-15deg);
margin-bottom: 70px;
margin-left: -10px;
margin: 0 0 0 -10px;
}
#bah_alors p:nth-of-type(1){
font-family:'Montserrat-SemiBold';
margin-left: 2px;
}
#bah_alors p:nth-of-type(2){
margin-top: 100px;
}
#bah_alors .tracer-y{
top: 450px;
left: -290px;
}
/* ////////et_maintenant//////// */
#et_maintenant{
top: 1450px;
left: 4320px;
}
#et_maintenant #y {
top: 260px;
left: 85px;
}
#et_maintenant #n{
top: 405px;
left: 85px;
}
#et_maintenant .tracer-y{
top: 100px;
left: -1210px;
}
#et_maintenant .tracer-n{
top: 450px;
left: -1970px;
}
/* ////////pouce//////// */
#pouce{
top: 1350px;
left: 2730px;
}
#pouce #y {
top: 355px;
left: 230px;
z-index: 17;
}
#pouce #n{
top: 355px;
left: 85px;
z-index: 17;
}
#pouce .txt{
top: -40px;
left: 240px;
width: 300px;
}
#pouce h4{
-webkit-transform: rotate(-15deg);
transform: rotate(-15deg);
}
#pouce .tracer-y{
top: 360px;
left: 275px;
z-index: 16;
}
#pouce .tracer-n{
top: 370px;
left: -1680px;
z-index: 16;
}
/* ////////koala//////// */
#koala{
top: 1600px;
left: 600px;
}
#koala #y {
top: 355px;
left: 230px;
}
#koala #n{
top: 355px;
left: 85px;
}
#koala .tracer-y{
top: 360px;
left: 275px;
}
#koala .tracer-n{
top: 370px;
left: -1680px;
}
/* ////////chevalier//////// */
#chevalier{
top: 2410px;
left: 1900px;
z-index: 16;
}
#chevalier #y {
top: 500px;
left: -150px;
}
#chevalier #n{
top: 500px;
left: -300px;
}
#chevalier .tracer-y{
top: 610px;
left: -960px;
}
#chevalier .tracer-n{
top: 530px;
left: -1180px;
}
/* ////////sy_mettre//////// */
#sy_mettre{
top: 2900px;
left: 580px;
}
#sy_mettre .txt{
width: 590px;
}
#sy_mettre h4{
-webkit-transform: rotate(-15deg);
transform: rotate(-15deg);
margin-left: -260px;
}
#sy_mettre p{
margin-top: 55px;
}
/* ////////etoile//////// */
#etoile{
top: 3920px;
left: 630px;
z-index: 14;
}
#etoile #y {
top: 220px;
left: 400px;
}
#etoile #n{
top: 390px;
left: 20px;
}
#etoile .tracer-y{
top: -1020px;
left: 500px;
}
#etoile .tracer-n{
top: -2000px;
left: -590px;
}
#etoile .txt{
margin-top: 210px;
margin-left: -240px;
background: white;
width: 300px;
height: 100px;
z-index: 1;
}
/* ////////center//////// */
#center{
top: 2230px;
left: 3660px;
}
#center .tracer-y{
top: -1020px;
left: 500px;
}
#center .tracer-n{
top: -2000px;
left: -590px;
}