firstcommit
This commit is contained in:
13
resources/scss/Backend/app.scss
Normal file
13
resources/scss/Backend/app.scss
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
//-- Component --------------------------------
|
||||
@import './components/delete.scss';
|
||||
@import './components/map.scss';
|
||||
@import './components/loader.scss';
|
||||
|
||||
|
||||
//-- Pages --------------------------------
|
||||
@import './pages/destination.scss';
|
||||
|
||||
|
||||
|
||||
|
9
resources/scss/Backend/components/delete.scss
Normal file
9
resources/scss/Backend/components/delete.scss
Normal file
@@ -0,0 +1,9 @@
|
||||
.dropdown-item.btn-delete{
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
.swal2-styled.swal2-cancel{
|
||||
margin: 0 !important;
|
||||
margin-left: 10px !important;
|
||||
}
|
44
resources/scss/Backend/components/loader.scss
Normal file
44
resources/scss/Backend/components/loader.scss
Normal 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 */
|
||||
}
|
3
resources/scss/Backend/components/map.scss
Normal file
3
resources/scss/Backend/components/map.scss
Normal file
@@ -0,0 +1,3 @@
|
||||
.mapContainer iframe{
|
||||
width: 100% !important;
|
||||
}
|
43
resources/scss/Backend/pages/destination.scss
Normal file
43
resources/scss/Backend/pages/destination.scss
Normal 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;
|
||||
}
|
1
resources/scss/frontend/app.scss
Normal file
1
resources/scss/frontend/app.scss
Normal file
@@ -0,0 +1 @@
|
||||
|
Reference in New Issue
Block a user