Files
LuckyDiamond/luckydiamond/src/assets/css/PagesStyles/games-pages/jackpot.css
Hepatica 9b4be986f5 work
2024-02-23 21:22:57 +01:00

166 lines
3.9 KiB
CSS

.jackpot-start {
z-index: 1;
/* margin-left: 5%; */
border-radius: 20px;
background: #1D223E;
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
width: 42vh;
/* height: 480px; */
height: 32vh;
border: 1px solid #262C55;
/* margin-top: 2.6%; */
margin: 2.6%;
}
.jackpot-loading-bar {
z-index: 1;
/* margin-left: 5%; */
border-radius: 20px;
background: #1D223E;
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
width: 100%;
/* height: 480px; */
/* height: 100%; */
border: 1px solid #262C55;
height: 100%;
/* margin-top: 2.6%; */
/* margin: 2.6%; */
}
.jackpot-carousel{
z-index: 1;
position: relative;
/* margin-left: 5%; */
border-radius: 10px;
background: #1D223E;
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
width: 100%;
margin-top: 1%;
/* height: 480px; */
/* height: 100%; */
border: 1px solid #262C55;
height: 95%;
}
.carousel-arrow {
position: absolute;
bottom: -20px; /* Регулируйте положение стрелки относительно нижнего края карусели */
left: 50%; /* Центрирование стрелки по горизонтали */
transform: translateX(-50%); /* Дополнительное центрирование, чтобы точка указывала точно на центр */
color: #ffffff; /* Цвет стрелки */
font-size: 24px; /* Размер стрелки */
/* Добавьте любые дополнительные стили, такие как цвет фона, границы и т.д. */
}
.jackpot-game {
z-index: 1;
/* margin-left: 5%; */
border-radius: 20px;
/* background: #1D223E; */
/* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); */
width: 69%;
/* height: 480px; */
height: 94%;
/* border: 1px solid #262C55; */
margin-top: 2.6%;
}
.jackpot-main-elements {
z-index: 1;
}
.jackpot-start__content p {
color: #FFFFFF84;
font-weight: 700;
line-height: 31px;
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
font-family: Montserrat Alternates;
font-size: 13px;
}
.padding-elements-jackpot {
padding-left: 5%;
padding-right: 5%;
}
.jackpot-start__btns {
margin-top: 5%;
display: flex;
flex-direction: column;
}
.jackpot-start__btns button {
width: 100%;
padding: 12px;
margin-bottom: 5px;
border: none;
color: #FFF;
font-weight: 700;
line-height: 19px;
font-style: normal;
font-family: Inter;
font-size: 16px;
}
.bank-container {
display: flex;
align-items: center;
/* background-color: #000066; */
color: white;
padding: 10px;
border-radius: 5px;
font-family: Arial, sans-serif; /* Choose your font */
}
.shield img {
width: 35px; /* Adjust based on your shield size */
height: auto;
margin-left: 10px;
}
.bank-info {
display: flex;
flex-direction: column;
text-align: left;
}
.bank-value {
font-size: 24px; /* Large text size */
font-weight: bold; /* Make the number bold */
}
.bank-name {
font-size: 14px; /* Smaller text size for 'БАНК' */
}
.progress-bar {
width: 95%;
background-color: #D9D9D9; /* Navy blue background */
border-radius: 10px;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
margin-left: 2vh;
margin-bottom: 3%;
}
.progress {
height: 40px;
background-color: #E13F3F; /* Red for the progress */
border-radius: 10px ; /* Rounded corners on the left side */
line-height: 40px; /* Same as height to vertically center text */
color: white;
text-align: start;
text-indent: 20px;
padding-right: 10px; /* Add some padding to the right of the text */
transition: width 0.25s ease-in-out;
}
.no-pointer-events {
pointer-events: none;
}
@media (max-width: 1415px) {
.padding-elements-jackpot {
padding-left: 0;
padding-right: 0;
}
}