Bien au dessus de Léandre et JL
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

155 lines
2.4 KiB

3 years ago
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap');
3 years ago
body{
background-color: #001f37;
3 years ago
font-family: "Fredorka", sans-serif;
3 years ago
margin: 0;
color: white;
3 years ago
}
3 years ago
.rouleau {
3 years ago
width: 5vw;
height: 3.8vw;
3 years ago
position: absolute;
top: 40%;
3 years ago
}
.cube {
3 years ago
width: 5vw;
height: 3.8vw;
3 years ago
position: relative;
transform-style: preserve-3d;
}
.cube__face {
position: absolute;
3 years ago
width: 5vw;
height: 3.8vw;
3 years ago
border: 2px solid #362730;
3 years ago
line-height: 3.8vw;
3 years ago
font-size: 1.5vw;
3 years ago
background-color: #c21121;
3 years ago
box-sizing: border-box;
3 years ago
font-weight: bold;
color: white;
text-align: center;
}
.machine{
position: relative;
height: 50vw;
width: 50vw;
}
.game{
display: flex;
}
.info{
height: 50vw;
width: 25vw;
text-align: center;
line-height: 10vw;
font-size: 2vw;
}
#jackpot{
visibility: hidden;
position: absolute;
height: 100vh;
display: block;
margin: 0 auto;
z-index: 205;
}
3 years ago
#rouleau_1{
left: 34.5%;
3 years ago
}
#rouleau_2{
left: 45%;
3 years ago
}
#rouleau_3{
left: 55.5%;
3 years ago
}
3 years ago
#tirette{
position: absolute;
z-index: 10;
left: 74%;
top: 23%;
width: 7.5%;
3 years ago
transform-origin: 50% 97%;
3 years ago
}
#tirage{
3 years ago
position: relative;
width: 100%;
}
#mise_input{
position: absolute;
top: 65%;
left: 37%;
width: 26%;
height: 4%;
border-radius: 20px;
border: none;
box-shadow: 0px 0px 37px black;
3 years ago
outline: none;
text-align: center;
3 years ago
}
3 years ago
.container{
display: flex;
justify-content: center;
}
.overlay{
3 years ago
background-color: rgb(0, 0, 0, 0.5);
3 years ago
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 42;
3 years ago
display: flex;
align-items: center;
justify-content: center;
}
.overlay > .overlay-rules{
3 years ago
height: min-content;
padding: 2em;
border-radius: 20px;
opacity: 1;
color: black;
3 years ago
background-color: white;
width: 40vw;
3 years ago
}
.button{
border: none;
padding: 0.6em 0.8em;
border-radius: 10px;
}
.button.is-white{
background-color: white;
transition: 0.2s ease-in-out;
}
.button.is-white:hover{
background-color: rgb(241, 241, 241);
transition: 0.2s ease-in-out;
}
.button.is-red{
background-color: rgb(228, 97, 97);
transition: 0.2s ease-in-out;
color: white;
}
.button.is-red:hover{
background-color: rgb(209, 88, 88);
transition: 0.2s ease-in-out;
}
h1, p{
margin-top: 0;
}