2026-04-14 17:41:39 +02:00

166 lines
3.7 KiB
CSS

body {
overflow: hidden;
user-select: none;
scroll-behavior: smooth;
box-sizing: border-box;
margin: 0;
padding: 0;
}
div, p {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
textarea {
resize: none;
outline: none;
border: none;
user-select: none;
}
button {
cursor: pointer;
outline: none;
border: none;
}
::-webkit-scrollbar{
width: 0px;
background-color: #002aff00;
}
#app {
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
user-select: none;
overflow: hidden;
}
.fuelContainer {
width: 59.3%;
height: 75%;
border-radius: 1.6vw;
background: url('/html/images/background.png');
background-repeat: no-repeat;
background-size: 100% 100%;
border: 1px solid #696a6e;
}
.menu-enter-active {
animation: openCategoryIntecation 1s ease forwards;
}
.menu-leave-active {
animation: closeCategoryInteraction 1s ease forwards;
}
@keyframes openCategoryIntecation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes closeCategoryInteraction {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
#firstdiv {
background: radial-gradient(40.36% 50% at 50% 0%, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.04) 0.01%, rgba(255, 255, 255, 0.00) 100%), radial-gradient(50% 50% at 50% 50%, rgba(22, 22, 22, 0.00) 0%, rgba(19, 19, 19, 0.53) 100%), #171717;
}
#rightdiv {
background: radial-gradient(40.36% 50% at 50% 0%, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.04) 0.01%, rgba(255, 255, 255, 0.00) 100%), radial-gradient(50% 50% at 50% 50%, rgba(22, 22, 22, 0.00) 0%, rgba(19, 19, 19, 0.53) 100%), #171717;
}
#bottomdiv {
background: radial-gradient(40.36% 50% at 50% 0%, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.04) 0.01%, rgba(255, 255, 255, 0.00) 100%), radial-gradient(50% 50% at 50% 50%, rgba(22, 22, 22, 0.00) 0%, rgba(19, 19, 19, 0.53) 100%), #171717;
}
#onediv {
background: linear-gradient(180deg, rgba(28, 28, 28, 0.00) 0%, rgba(205, 151, 39, 0.20) 100%), #1C1C1C;
}
#twodiv {
background: linear-gradient(180deg, rgba(28, 28, 28, 0.00) 0%, rgba(189, 56, 184, 0.20) 100%), #1C1C1C;
}
#threediv {
background: linear-gradient(180deg, rgba(28, 28, 28, 0.00) 0%, rgba(43, 123, 203, 0.20) 100%), #1C1C1C;
}
#fourdiv {
background: linear-gradient(180deg, rgba(28, 28, 28, 0.00) 0%, rgba(45, 206, 162, 0.20) 100%), #1C1C1C;
}
#paymentbtn {
border: none;
background: linear-gradient(90deg, #FE9065 -11.24%, #FF5BB1 108.43%), #FFF;
}
.vehicleBottom {
z-index: 500;
background-repeat: no-repeat;
background-size: 100% 100%;
width: 90%;
}
#input1 {
background: linear-gradient(to right, #CD9727 0%, #CD9727 50%, #fff 50%, #fff 100%);
height: 7px;
width: 100%;
border-radius: 100px;
outline: none;
-webkit-appearance: none;
margin-top: .8vw;
}
#input2 {
background: linear-gradient(to right, #BD38B8 0%, #BD38B8 50%, #fff 50%, #fff 100%);
height: 7px;
width: 100%;
border-radius: 100px;
outline: none;
-webkit-appearance: none;
margin-top: .8vw;
}
#input3 {
background: linear-gradient(to right, #2B7BCB 0%, #2B7BCB 50%, #fff 50%, #fff 100%);
height: 7px;
width: 100%;
border-radius: 100px;
outline: none;
-webkit-appearance: none;
margin-top: .8vw;
}
#input4 {
background: linear-gradient(to right, #2DCEA2 0%, #2DCEA2 50%, #fff 50%, #fff 100%);
height: 7px;
width: 100%;
border-radius: 100px;
outline: none;
-webkit-appearance: none;
margin-top: .8vw;
}
input[type='range']::-webkit-slider-thumb {
-webkit-appearance: none;
width: 4px;
height: 15px;
border-radius: 100px;
background: #FFF;
cursor: ew-resize;
}