working on last user info in jackpot

This commit is contained in:
Hepatica
2024-02-25 01:32:28 +01:00
parent 1f17828c52
commit 08b79fbe63
3 changed files with 115 additions and 59 deletions

View File

@@ -27,7 +27,8 @@
/* margin-top: 2.6%; */
/* margin: 2.6%; */
}
.jackpot-carousel{
.jackpot-carousel {
z-index: 1;
position: relative;
/* margin-left: 5%; */
@@ -42,13 +43,19 @@
border: 1px solid #262C55;
height: 95%;
}
.carousel-arrow {
position: absolute;
bottom: -20px; /* Регулируйте положение стрелки относительно нижнего края карусели */
left: 50%; /* Центрирование стрелки по горизонтали */
transform: translateX(-50%); /* Дополнительное центрирование, чтобы точка указывала точно на центр */
color: #ffffff; /* Цвет стрелки */
font-size: 24px; /* Размер стрелки */
bottom: -20px;
/* Регулируйте положение стрелки относительно нижнего края карусели */
left: 50%;
/* Центрирование стрелки по горизонтали */
transform: translateX(-50%);
/* Дополнительное центрирование, чтобы точка указывала точно на центр */
color: #ffffff;
/* Цвет стрелки */
font-size: 24px;
/* Размер стрелки */
/* Добавьте любые дополнительные стили, такие как цвет фона, границы и т.д. */
}
@@ -109,11 +116,13 @@
color: white;
padding: 10px;
border-radius: 5px;
font-family: Arial, sans-serif; /* Choose your font */
font-family: Arial, sans-serif;
/* Choose your font */
}
.shield img {
width: 35px; /* Adjust based on your shield size */
width: 35px;
/* Adjust based on your shield size */
height: auto;
margin-left: 10px;
}
@@ -124,13 +133,33 @@
text-align: left;
}
.jackpot-last-game-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%; */
}
.bank-value {
font-size: 24px; /* Large text size */
font-weight: bold; /* Make the number bold */
font-size: 24px;
/* Large text size */
font-weight: bold;
/* Make the number bold */
}
.bank-name {
font-size: 14px; /* Smaller text size for 'БАНК' */
font-size: 14px;
/* Smaller text size for 'БАНК' */
}
.progress-text {
@@ -140,7 +169,8 @@
.progress-bar {
width: 95%;
background-color: #D9D9D9; /* Navy blue background */
background-color: #D9D9D9;
/* Navy blue background */
border-radius: 10px;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
margin-left: 2vh;
@@ -149,13 +179,17 @@
.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 */
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-align: start;
text-indent: 20px;
padding-right: 10px; /* Add some padding to the right of the text */
padding-right: 10px;
/* Add some padding to the right of the text */
transition: width 0.25s ease-in-out;
}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 10 KiB