Files
backend/public/version2/css/dashboard_layouts/mainDashboard.css

487 lines
7.7 KiB
CSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
margin-bottom: 0;
}
body {
overflow-y: overlay;
background: #fff;
}
.body {
font-size: 14px;
}
a {
color: unset;
}
a:hover {
color: unset;
}
.pipeline {
width: 1px;
height: 30px;
background: #db7240;
}
.body-main {
flex: 1;
width: 100%;
}
.rotate {
transform: rotate(-90deg);
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance:textfield;
}
.form-check {
position: relative;
display: block;
padding-left: unset;
}
.form-check label {
padding-right: 1.25rem;
}
/* map main styles */
.map-box {
width: 100%;
height: 75vh;
border: 2px dashed #015688;
position: relative;
}
.map-box-contact-us {
width: 100%;
height: 40vh;
border: 2px dashed #015688;
position: relative;
}
#map {
width: 100%;
height: 100%;
}
.pin-marker {
position: relative;
width: 45px;
height: 71px;
font-family: "IRANSans";
}
.pin-most-dis {
width: 75px;
}
.pin-marker.pin-move > .map-pin-marker {
transform: scale(0.75);
}
.pin-marker.pin-set > .map-pin-marker > .pin-title-circle {
background-color: #009900;
}
.pin-marker.pin-warn > .map-pin-marker > .pin-title-circle {
background-color: #e90a0a;
}
.pin-marker.pin-move > .pin-main-shadow {
transform: scale(1.35);
}
.map-pin-marker {
position: relative;
width: 45px;
height: 65px;
z-index: 10;
transform-origin: 22.5px 0;
transition: transform 0.2s;
}
.most-distance {
width: 75px;
}
.map-pin-marker > .pin-main-circle {
position: absolute;
width: 45px;
height: 45px;
left: 0;
background-color: rgba(22, 67, 88, 1);
border-radius: 50%;
z-index: 12;
}
.most-distance > .pin-main-circle {
width: 75px;
}
.map-pin-marker > .pin-white-circle {
position: absolute;
width: 39px;
height: 39px;
left: 3px;
top: 3px;
background-color: #ffffff;
border-radius: 50%;
z-index: 13;
}
.most-distance > .pin-white-circle {
width: 69px;
}
.map-pin-marker > .pin-title-circle {
position: absolute;
width: 35px;
height: 35px;
left: 5px;
top: 5px;
background-color: rgba(22, 67, 88, 1);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
z-index: 14;
transition: background-color 0.3s;
}
.most-distance > .pin-title-circle {
width: 65px;
}
.map-pin-marker > .pin-title-circle > .title-circle-text {
line-height: 1;
font-size: 10px;
color: #ffffff;
font-weight: 600;
z-index: 15;
}
.map-pin-marker > .pin-main-line {
position: absolute;
width: 5px;
height: 25px;
z-index: 11;
background-color: #000000;
top: 40px;
left: 20px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
}
.most-distance > .pin-main-line {
left: 36px;
}
.pin-marker > .pin-main-shadow {
position: absolute;
width: 11px;
height: 11px;
left: 17px;
top: 58px;
background-color: rgba(0, 0, 0, 0.2);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
z-index: 10;
transition: transform 0.2s;
}
.pin-marker > .pin-main-shadow > .shadow-dot {
position: relative;
width: 1px;
height: 1px;
left: 0;
top: 0;
background-color: #000000;
border-radius: 50%;
z-index: 10;
}
.leaflet-div-icon {
background: transparent !important;
border: none !important;
}
/* end map main styles */
/* main loader */
#spinner {
background: #e6e6eb;
width: 100%;
height: 100%;
position: fixed;
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
top: 0;
z-index: 10000;
}
#spinner > .dot {
width: 1rem;
height: 1rem;
border-radius: 50%;
background-color: #095b8b;
animation: blur 1s infinite alternate;
}
#spinner > .dot:nth-child(2) {
animation-delay: 200ms;
}
#spinner > .dot:nth-child(3) {
animation-delay: 400ms;
}
@keyframes blur {
to {
filter: blur(4px);
opacity: 0;
}
}
/* end main loader */
/* file part css */
.imgbox {
border: 1px solid #ccc;
width: 100%;
height: 100%;
cursor: pointer;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
padding: 10px;
margin: 0;
color: #666;
font-size: 12px;
}
.img-preview {
max-width: 100%;
max-height: 150px;
}
.btn-delete-img {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.btn-danger.disabled,
.btn-danger:disabled {
font-size: 12px;
background-color: #007bff;
border: none;
}
.upload-box .image-header {
color: #1d7bb1;
font-weight: 500;
font-size: 13px;
margin-bottom: 5px;
}
/* end file part css */
/* validation style */
.invalid {
border-color: crimson !important;
box-shadow: rgba(126, 45, 45, 0.35) 0px 5px 15px;
}
.valid {
border-color: #009900 !important;
box-shadow: rgba(36, 160, 47, 0.35) 0px 5px 15px;
}
/* end validation style */
/* blink */
.blink_me {
animation: blinker 1s linear infinite;
}
.blink_dot {
width: 8px;
height: 8px;
background: #ff4848;
display: flex;
border-radius: 50%;
}
@keyframes blinker {
50% {
opacity: 0;
}
}
/* end blink */
.form-control[readonly] {
background-color: #fff;
}
.positive-cta {
border: none;
background: #2d7c23;
color: #fff;
border-radius: 3px;
padding: 10px 15px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
transition: 0.3s all;
}
.positive-cta:hover {
background: #2d8722e0;
}
.positive-cta:disabled {
background: #2d7c23a8;
cursor: no-drop;
}
.negative-cta {
border: none;
background: #971b1b;
color: #fff;
border-radius: 3px;
padding: 10px 15px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
transition: 0.3s all;
}
.negative-cta:hover {
background: #b53030e0;
}
.negative-cta:disabled {
background: #971b1ba8;
cursor: no-drop;
}
.input-cta {
border: none;
background: #237c70;
color: #fff;
border-radius: 3px;
padding: 8px 15px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
transition: 0.3s all;
}
.input-cta:hover {
background: #237c70e0;
}
.input-cta:disabled {
background: #237c70a8;
cursor: no-drop;
}
.filter-cta {
border: none;
background: #7c2963;
color: #fff;
border-radius: 3px;
padding: 8px 15px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
transition: 0.3s all;
}
.filter-cta:hover {
background: #7c2963e0;
}
.filter-cta:disabled {
background: #7c2963a8;
cursor: no-drop;
}
.input-button-positive-cta {
border: none;
background: #23868a;
color: #fff;
letter-spacing: 1px;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
padding: 0px 10px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
transition: 0.3s all;
}
.input-button-positive-cta:hover {
background: #23868ae0;
}
.input-button-positive-cta:disabled {
background: #23868aa8;
cursor: no-drop;
}
.item-icons {
width: 20px;
line-height: 43px;
height: 30px;
padding: 2px;
}
@media (min-width: 1400px) {
.container {
max-width: 1350px;
}
}
@media (min-width: 1600px) {
.container {
max-width: 1500px;
}
}
@media (min-width: 720px) {
::-webkit-scrollbar {
width: 20px;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: #d6dee1;
border-radius: 20px;
border: 6px solid transparent;
background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
background-color: #a8bbbf;
}
}
@media (max-width: 720px) {
.body {
flex-direction: column;
}
.body-main {
margin-top: 15px;
}
.map-box {
height: 60vh;
}
}
.form-check-inline {
display: inline-flex;
align-items: center;
padding-left: 0px;
padding-right: 0px;
margin-right: 0;
margin-left: 0.75rem;
}
.form-check label {
padding-left: 0.5rem;
padding-right: 0;
}