Raffales-LMS/public/games/spin_the_wheel/style.css
2024-04-16 15:43:24 +05:45

216 lines
3.2 KiB
CSS
Vendored

* {
box-sizing: border-box;
padding: 0;
margin: 0;
outline: none;
}
body {
font-family: Open Sans;
/* justify-content: center; */
/* align-items: center; */
/* height: 100vh; */
/* overflow: hidden; */
background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
url(nepcoms_bg.jpg);
background-size: cover;
}
.mainbox {
position: relative;
width: 500px;
height: 500px;
}
.mainbox:after {
position: absolute;
content: "";
width: 100%;
height: 100%;
background: url(./arrow-bottom.png) no-repeat;
background-size: 5%;
left: 5%;
top: 48%;
transform: rotate(90deg);
}
.box {
width: 100%;
height: 100%;
position: relative;
border-radius: 50%;
border: 10px solid #949090;
overflow: hidden;
transition: all ease-in-out 5s;
transform: rotate(90deg);
}
span {
width: 100%;
height: 100%;
display: inline-block;
position: absolute;
}
.span1 {
clip-path: polygon(0 17%, 0 50%, 50% 50%);
background-color: #45776e;
}
.span2 {
clip-path: polygon(0 17%, 30% 0, 50% 50%);
background-color: #c3242a;
}
.span3 {
clip-path: polygon(30% 0, 71% 0, 50% 50%);
background-color: #6e98cc;
}
.span4 {
clip-path: polygon(71% 0, 100% 18%, 50% 50%);
background-color: #bf216a;
}
.span5 {
clip-path: polygon(100% 18%, 100% 50%, 50% 50%);
background: #ff8300;
}
.box2 .span3 {
background-color: #00ff04;
}
.box2 {
width: 100%;
height: 100%;
transform: rotate(180deg);
}
.font {
color: white;
font-size: 20px;
}
.box1 .span1 b {
position: absolute;
top: 34%;
right: 69%;
transform: rotate(200deg);
text-align: center;
}
.box1 .span2 b {
position: absolute;
top: 20%;
right: 60%;
transform: rotate(-130deg);
}
.box1 .span3 b {
position: absolute;
top: 20%;
right: 36%;
transform: rotate(-90deg);
}
.box1 .span4 b {
position: absolute;
top: 25%;
right: 15%;
transform: rotate(-45deg);
}
.box1 .span5 b {
position: absolute;
top: 38%;
right: 10%;
transform: rotate(-15deg);
text-align: center;
}
.box2 .span1 b {
position: absolute;
top: 34%;
right: 70%;
transform: rotate(200deg);
}
.box2 .span2 b {
position: absolute;
top: 20%;
right: 60%;
transform: rotate(-130deg);
text-align: center;
}
.box2 .span3 b {
position: absolute;
top: 15%;
right: 40%;
transform: rotate(270deg);
}
.box2 .span4 b {
position: absolute;
top: 24%;
right: 13%;
transform: rotate(310deg);
}
.box2 .span5 b {
position: absolute;
top: 32%;
right: 3%;
transform: rotate(-20deg);
text-align: center;
}
.spin {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100px;
height: 100px;
border-radius: 50%;
border: 0px solid white;
/* background-color: #ff5722; */
color: #fff;
box-shadow: 0 5px 20px #d7d5d5;
font-weight: bold;
font-size: 22px;
cursor: pointer;
z-index: 1000;
background: url(nepcoms_game_star.png) center center;
background-size: cover;
}
.spin:active {
width: 70px;
height: 70px;
font-size: 20px;
}
.mainbox.animate:after {
animation: animateArrow 0.7s ease infinite;
}
audio {
display: none;
}
@keyframes animateArrow {
50% {
right: -50px;
}
}
@media (max-width: 576px) {
.mainbox {
width: 100%;
height: 50%;
}
}