inital commit

This commit is contained in:
2026-01-01 15:25:19 +05:30
commit f0ae49465a
36361 changed files with 4894111 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
/**=====================
theme layout CSS Start
==========================**/
.page-wrapper.compact-wrapper,
.page-wrapper.horizontal-wrapper {
.page-body-wrapper {
.sidebar-wrapper {
&[sidebar-layout="border-sidebar"] {
.sidebar-main {
.sidebar-links {
> li {
.sidebar-link {
border-bottom: 1px solid rgba($primary-color, 0.1);
transition: all 0.3s ease;
}
}
}
}
}
&[sidebar-layout="iconcolor-sidebar"] {
.sidebar-main {
.sidebar-links {
> li {
$colors: $success-color, $secondary-color, $primary-color, $danger-color, $info-color, $warning-color,
$light-color;
$repeat: 60;
@for $i from 1 through $repeat {
&:nth-child(#{length($colors)}n + #{$i}) {
svg {
color: lighten(nth($colors, random(length($colors))), 15%) !important;
}
&:hover {
a {
svg {
stroke: lighten(nth($colors, random(length($colors))), 15%) !important;
}
&:hover {
background-color: rgba(nth($colors, random(length($colors))), 0.15) !important;
}
}
}
}
}
}
}
}
}
}
}
}