|
|
@ -1,21 +1,9 @@ |
|
|
|
* { |
|
|
|
margin: 0; |
|
|
|
padding: 0; |
|
|
|
box-sizing: border-box; |
|
|
|
} |
|
|
|
|
|
|
|
/* le fond avec un gradient*/ |
|
|
|
body { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
justify-content: center; |
|
|
|
flex-direction: column; |
|
|
|
min-height: 100vh; |
|
|
|
background: rgb(18,79,96); |
|
|
|
background: -moz-linear-gradient(180deg, rgba(18,79,96,1) 0%, rgba(84,33,163,1) 100%); |
|
|
|
background: -webkit-linear-gradient(180deg, rgba(18,79,96,1) 0%, rgba(84,33,163,1) 100%); |
|
|
|
background: linear-gradient(180deg, rgba(18,79,96,1) 0%, rgba(84,33,163,1) 100%); |
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#124f60",endColorstr="#5421a3",GradientType=1); |
|
|
|
} |
|
|
|
|
|
|
|
/* lien "machine à sous NSI" qui nous mène vers la page avec l'interface graphique de la machine à sous*/ |
|
|
|
a { |
|
|
@ -38,10 +26,11 @@ a:hover { |
|
|
|
transition: 3s; |
|
|
|
text-shadow: 20px 10px 10px black, 0 0 25px blue, 0 0 5px darkblue; |
|
|
|
} |
|
|
|
/* le fond avec un gradient*/ |
|
|
|
body { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
justify-content: center; |
|
|
|
justify-content: space-around; |
|
|
|
flex-direction: column; |
|
|
|
min-height: 100vh; |
|
|
|
background: rgb(18,79,96); |
|
|
@ -107,17 +96,31 @@ button:hover { |
|
|
|
transition: all 0.7s; |
|
|
|
} |
|
|
|
|
|
|
|
.mise { |
|
|
|
display: flex; |
|
|
|
justify-content: center; |
|
|
|
flex-direction: column; |
|
|
|
align-items: center; |
|
|
|
} |
|
|
|
.mise > * { |
|
|
|
padding: 5px; |
|
|
|
} |
|
|
|
.mise label { |
|
|
|
font-size: 18px; |
|
|
|
} |
|
|
|
.mise input { |
|
|
|
filter: invert(1); |
|
|
|
border-radius: 2%; |
|
|
|
} |
|
|
|
|
|
|
|
/* affichage des "coin player et machine" */ |
|
|
|
.option { |
|
|
|
position: absolute; |
|
|
|
display: flex; |
|
|
|
justify-content: center; |
|
|
|
align-items: center; |
|
|
|
flex-direction: column; |
|
|
|
top: 50%; |
|
|
|
right: 3%; |
|
|
|
transform: translateY(-50%); |
|
|
|
color: white; |
|
|
|
height: 40vh; |
|
|
|
} |
|
|
|
|
|
|
|
/* titre qui renvoie à la page index.html */ |
|
|
|