first commit

This commit is contained in:
2022-04-13 13:51:55 +07:00
commit 47e209c023
3107 changed files with 238911 additions and 0 deletions

View File

@ -0,0 +1,8 @@
@import "./_transparent-reset";
@import "./_transparent-global";
@import "./_transparent-header";
@import "./_transparent-nav-header";
@import "./_transparent-nav-header";
@import "./_transparent-left-sidebar";
@import "./_transparent-right-sidebar";
@import "./_transparent-footer";

View File

@ -0,0 +1,13 @@
// [data-theme-version="dark"] {
// .footer {
// background-color: lighten($d-bg, 3.2%);
// .copyright {
// background-color: lighten($d-bg, 3.2%);
// p {
// color: $white;
// }
// }
// }
// }

View File

@ -0,0 +1,24 @@
[data-theme-version="transparent"] {
.dropdown-menu {
background-color: $dark-card;
}
.dropdown-item {
&:hover, &:focus {
background-color: $d-bg;
color: $white;
}
}
.form-control {
background-color: $d-bg;
border-color: $d-border;
color: $white;
}
.card {
background-color: rgba(0,0,0,0.15);
}
}

View File

@ -0,0 +1,43 @@
[data-theme-version="transparent"] {
.header {
background-color: rgba(0,0,0,0.15);
}
.header-left {
input {
border-color: $d-border;
color: $white;
&:focus {
box-shadow: none;
border-color: $primary;
}
&::placeholder {
color: $white;
}
}
}
.header-right {
.dropdown {
.nav-link {
&:hover {
color: $white;
}
}
}
.notification_dropdown {
.dropdown-item {
a {
color: $white;
}
}
}
}
}

View File

@ -0,0 +1,70 @@
[data-theme-version="transparent"] {
.deznav {
background-color: rgba(0,0,0,0.15)!important;
.metismenu {
&>li {
&>a {
color: rgba(0,0,0,0.15);
}
&:hover,
&:focus,
&.mm-active {
&>a {
background-color: rgba(0,0,0,0.15)!important;
color: $white;
&::after {
border-color: transparent transparent $white transparent;
}
}
}
&.mm-active {
ul {
ul {
background-color: transparent;
}
}
}
}
//one step dropdown
ul {
background-color: rgba(0,0,0,0.15);
a {
&:hover,
&:focus,
&.mm-active {
color: $white;
}
}
}
a {
color: rgba(0,0,0,0.15);
}
ul {
background-color: rgba(0,0,0,0.15)!important;
}
.has-arrow {
&:after {
border-color: transparent transparent rgba(0,0,0,0.15) transparent;
}
}
}
}
}

View File

@ -0,0 +1,18 @@
[data-theme-version="transparent"] {
.nav-header,
.nav-control {
background-color: rgba(0,0,0,0.15)!important;
}
.nav-control {
color: $white;
}
.brand-logo {
color: $white;
&:hover {
color: $white;
}
}
}

View File

@ -0,0 +1,17 @@
// [data-theme-version="dark"] {
// #preloader {
// background: $d-bg;
// }
// .loader {
// &__bar {
// background: $primary;
// box-shadow: 1px 1px 0 $d-border;
// }
// &__ball {
// background: $primary;
// }
// }
// }

View File

@ -0,0 +1,56 @@
@import "./../../abstracts/variable";
[data-theme-version="transparent"] {
background: url('../images/body/12.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-position: center;
position: relative;
// background: $d-bg;s
color: $white;
h1,
h2,
h3,
h4,
h5,
h6 {
color: $white !important;
}
a.link {
color: $d-ctd;
}
a.link:focus,
a.link:hover {
color: $info;
}
a {
color: $white;
&:hover {
color: $d-ctl;
}
}
//Generating border classess
@each $value in $borders {
@if $value == "" {
.border {
border: 1px solid $d-border !important;
}
} @else {
.border-#{$value} {
border-#{$value}: 1px solid $d-border !important;
}
}
}
}

View File

@ -0,0 +1,16 @@
// [data-theme-version="dark"] {
// .sidebar-right {
// background-color: lighten($d-bg, 3.2%);
// .nav-tabs {
// background-color: lighten($d-bg, 3.2%);
// border-bottom: 1px solid $d-bg;
// .nav-link {
// &.active {
// background-color: $d-bg;
// }
// }
// }
// }
// }