firstcommit

This commit is contained in:
2025-08-17 16:23:14 +05:45
commit 76bf4c0a18
2648 changed files with 362795 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
//-- Component --------------------------------
@import './components/delete.scss';
@import './components/map.scss';
@import './components/loader.scss';
//-- Pages --------------------------------
@import './pages/destination.scss';

View File

@@ -0,0 +1,9 @@
.dropdown-item.btn-delete{
cursor: pointer;
}
.swal2-styled.swal2-cancel{
margin: 0 !important;
margin-left: 10px !important;
}

View File

@@ -0,0 +1,44 @@
.loader {
display: inline-block;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1001; /* Ensure it's above the overlay */
}
.loader:after {
content: " ";
display: block;
width: 40px;
height: 40px;
margin: 8px;
margin-left: 32px;
margin-top: 25px;
border-radius: 50%;
border: 6px solid #fff;
border-color: #5a8dee transparent #5a8dee transparent;
animation: loader 0.7s linear infinite;
text-align: center;
}
@keyframes loader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* Backdrop */
.backdrop {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
// background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
z-index: 999; /* Ensure it's above other content */
}

View File

@@ -0,0 +1,3 @@
.mapContainer iframe{
width: 100% !important;
}

View File

@@ -0,0 +1,43 @@
// rate
.rate {
float: left;
height: 46px;
padding: 0 10px;
}
.rate:not(:checked)>input {
position: absolute;
top: -9999px;
}
.rate:not(:checked)>label {
float: right;
width: 1em;
overflow: hidden;
white-space: nowrap;
cursor: pointer;
font-size: 30px;
color: #ccc;
}
.rate:not(:checked)>label:before {
content: '';
}
.rate>input:checked~label {
color: #390c02c8;
}
.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
color: #deb217;
}
.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
color: #c59b08;
}

View File

@@ -0,0 +1 @@