123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- // @import "../vendor/animate/animate.min.css";
- // @import "../vendor/waves/waves.min.css";
- // @import "../vendor/perfect-scrollbar/perfect-scrollbar.css";
- // @import "../vendor/basic-table/basictable.css";
-
- * {
- outline: none;
- padding: 0;
-
- &::after {
- margin : 0;
- padding: 0;
- }
-
- &::before {
- margin : 0;
- padding: 0;
- }
- }
-
- body {
- // &.dashboard {
- // background: $light;
- // font-size : 14px;
- // }
- }
-
- #main-wrapper {
- // opacity : 0;
- transition : all 0.25s ease-in;
- // overflow : hidden;
- position : relative;
- z-index : 1;
- // height: 100vh;
- margin-top : 110px;
-
- // &::before {
- // content : "";
- // height : 300px;
- // top : 0;
- // left : 0;
- // width : 100%;
- // position : absolute;
- // z-index : -9;
- // background: $primary;
- // }
-
- &.show {
- opacity: 1;
- }
- }
-
- .content-body {
- margin-left : $sidebar-width;
- // margin-right : $map-width +30px;
- // padding-top : 100px;
- margin-top : 30px;
- margin-bottom : 50px;
-
- @include media-breakpoint-up(sm) {
- margin-left : 0px;
- margin-bottom: 50px;
- }
- }
-
- .details {
- .content-body {
- margin-left: 0px;
- }
- }
-
- .dashboard {
- .content-body {
- margin-left : $sidebar-width;
- margin-right: 0px;
- margin-top : 0px;
-
- // @include media-breakpoint-up(sm) {
- // margin-left : 0px;
- // margin-bottom: 50px;
- // }
-
- // @include respond("tab-port") {
- // margin-left: 100px;
- // }
-
- @include respond("phone-land") {
- margin-left: 0px;
- }
- }
- }
-
- ul {
- padding: 0;
- margin : 0;
- }
-
- li {
- list-style: none;
- }
-
- a {
- color : $primary;
- text-decoration: none;
- outline : none;
-
- &:hover,
- &:focus,
- &.active {
- text-decoration: none;
- outline : none;
- color : $primary;
- }
- }
-
- b,
- strong {
- color: $headings-color;
- }
-
- h1,
- .h1,
- h2,
- .h2,
- h3,
- .h3,
- h4,
- .h4,
- h5,
- .h5,
- h6,
- .h6 {
- font-family: 'Montserrat', sans-serif;
- font-weight: 600;
- }
-
- // h4,
- // .h4,
- // h5,
- // .h5,
- // h6,
- // .h6 {
- // font-family: 'Montserrat', sans-serif;
- // font-weight: 500;
- // }
-
- /* Editable */
-
- // @include media-breakpoint-up(xxl) {
- // .container-fluid {
- // max-width: 80%;
- // }
- // }
-
- // #map {
- // height : 100%;
- // width : 100%;
- // margin : 0;
- // z-index: 990;
- // }
|