This commit is contained in:
2025-04-03 08:51:40 -05:00
commit 9ef8d75174
74 changed files with 50934 additions and 0 deletions
+678
View File
@@ -0,0 +1,678 @@
::-moz-selection {
background: #ebfafa;
color: #0010f7;
}
::selection {
background: #ebfafa;
color: #0010f7;
}
body {
color: #2d3436;
font-size: 14px;
font-family: "Poppins", sans-serif;
line-height: 1.5715;
overflow-x: hidden;
}
main {
background: #f0f3f5;
}
a {
-webkit-transition: 0.3s;
transition: 0.3s;
}
/* Buy Now Button */
.hp-buy-now-btn {
bottom: 6%;
right: 85px;
}
/* Img */
img {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
max-width: 100%;
}
.hp-img-cover {
-o-object-fit: cover;
object-fit: cover;
}
.hp-img-position-left {
-o-object-position: left;
object-position: left;
}
.hp-img-position-right {
-o-object-position: right;
object-position: right;
}
.hp-img-position-top {
-o-object-position: top;
object-position: top;
}
.hp-img-position-bottom {
-o-object-position: bottom;
object-position: bottom;
}
/* Line Height */
.lh-1 {
line-height: 1 !important;
}
/* Bg */
.hp-bg-none {
background: none;
}
/* Scrollbar */
.hp-scrollbar-y-hidden::-webkit-scrollbar {
width: 0;
}
.hp-scrollbar-x-hidden::-webkit-scrollbar {
height: 0;
}
/* Layout */
.hp-main-layout {
max-width: calc(100% - 316px);
-webkit-box-flex: 0;
-ms-flex: 0 0 calc(100% - 316px);
flex: 0 0 calc(100% - 316px);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin: 0 auto;
}
.hp-main-layout-content {
position: relative;
margin: 0 auto;
-webkit-box-flex: 1;
-ms-flex: 1 0 100%;
flex: 1 0 100%;
max-width: 100%;
width: 100%;
}
@media only screen and (min-width: 1200px) {
.hp-main-layout-content {
-webkit-box-flex: 1;
-ms-flex: 1 0 90%;
flex: 1 0 90%;
max-width: 90%;
width: 90%;
}
}
@media only screen and (min-width: 1600px) {
.hp-main-layout-content {
-webkit-box-flex: 1;
-ms-flex: 1 0 70%;
flex: 1 0 70%;
max-width: 70%;
width: 70%;
}
}
@media screen and (max-width: 1199px) {
.hp-main-layout-content {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
padding: 0 32px;
}
}
@media screen and (max-width: 767px) {
.hp-main-layout-content {
padding: 0 16px;
}
}
@media screen and (max-width: 1199px) {
.hp-main-layout {
max-width: 100vw !important;
-webkit-box-flex: 0 !important;
-ms-flex: 0 0 100% !important;
flex: 0 0 100% !important;
}
}
/* Boxed Layout */
@media only screen and (min-width: 768px) {
body.content-width-boxed .hp-main-layout-content {
max-width: 936px;
width: 100%;
}
}
/* Vertical & Horizontal Layout */
.hp-main-layout-horizontal {
max-width: 100%;
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
}
.hp-vertical-block {
display: none !important;
}
.hp-horizontal-block {
display: none !important;
}
body.vertical-active .hp-vertical-block {
display: block !important;
}
body.vertical-active .hp-vertical-none {
display: none !important;
}
body.horizontal-active .hp-horizontal-block {
display: block !important;
}
body.horizontal-active .hp-horizontal-none {
display: none !important;
}
/* App Layout */
body.app-layout-bg {
position: relative;
}
body.app-layout-bg:before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 270px;
background: #ffffff;
}
/* Dropdown Fade */
.hover-dropdown-fade .dropdown-fade {
opacity: 0;
visibility: hidden;
pointer-events: none;
-webkit-transition: 0.4s;
transition: 0.4s;
}
.hover-dropdown-fade:hover .dropdown-fade {
opacity: 1;
visibility: visible;
pointer-events: all;
}
/* Overflow Control */
.hp-overflow-x-auto {
overflow-x: auto;
overflow-y: hidden;
}
.hp-overflow-x-auto::-webkit-scrollbar {
height: 0;
}
.hp-overflow-y-auto {
overflow-y: auto;
overflow-x: hidden;
}
/* List Style */
li {
list-style: none;
}
ul {
margin-bottom: 0;
padding-left: 0;
}
.hp-list-disc li {
list-style: disc;
}
/* Placeholder Image */
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@media only screen and (min-width: 1200px) {
.bd-placeholder-img-lg {
font-size: calc(1.475rem + 2.7vw);
}
}
/* Text Overflow */
.hp-text-overflow-ellipsis {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
display: block;
}
/* Flex */
.hp-flex-none {
-webkit-box-flex: 0 !important;
-ms-flex: none !important;
flex: none !important;
}
@media screen and (max-width: 767px) {
.hp-flex-sm-100 {
-webkit-box-flex: 0 !important;
-ms-flex: 0 0 100% !important;
flex: 0 0 100% !important;
}
}
/* Cursor */
.hp-cursor-pointer {
cursor: pointer;
}
/* Transition */
.hp-transition {
-webkit-transition: 0.4s;
transition: 0.4s;
}
/* Code */
.hljs-container {
display: none;
}
.hljs-container pre {
display: grid;
background: #eaeef3;
}
.hljs-container .hljs {
padding: 4px;
border-radius: 0px;
margin: 0 1px;
font-size: 14px;
background: none;
}
/* Scroll to Top */
.scroll-to-top {
position: fixed;
z-index: 3;
bottom: 6%;
right: 30px;
cursor: pointer;
-webkit-transition: opacity 0.2s linear 0s, visibility;
transition: opacity 0.2s linear 0s, visibility;
opacity: 0;
visibility: hidden;
}
.scroll-to-top.active {
opacity: 1;
visibility: visible;
}
/* Wish Button */
.hp-wish-button svg {
-webkit-transition: 0.3s;
transition: 0.3s;
}
.hp-wish-button:hover svg {
-webkit-transform: scale(1.15);
transform: scale(1.15);
}
/* Shadow */
.hp-primary-shadow {
-webkit-box-shadow: 0px 0px 25px rgba(0, 16, 247, 0.7);
box-shadow: 0px 0px 25px rgba(0, 16, 247, 0.7);
}
.hp-elevatior {
-webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.08);
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.08);
}
.hp-elevatior-2 {
-webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
/* CategoryOfTheWeek */
.hp-categoriesOfTheWeek .hp-img-container {
width: 36px;
height: 36px;
text-align: center;
border-radius: 7px;
margin-right: 8px;
}
/* Credit Card */
.hp-credit-card[type=primary] {
background: #0010f7;
}
.hp-credit-card[type=danger] {
background: #ff0022;
}
.hp-credit-card[type=dark] {
background: #111314;
}
.hp-credit-card[type=warning] {
background: #ffc212;
}
.hp-credit-card .progress {
background: rgba(255, 255, 255, 0.3) !important;
}
.hp-credit-card .progress .progress-bar {
background: #ffffff;
}
.hp-credit-card-circle {
min-width: 158px;
height: 158px;
-webkit-transform: translate(2px, -18px);
transform: translate(2px, -18px);
pointer-events: none;
}
/* eCommerceCardOne */
.hp-eCommerceCardOne img {
max-height: 200px;
}
.hp-eCommerceCardOne-text-overlay {
display: block;
max-width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* BestSellingCategories */
.hp-bestSellingCategories .hp-img-container {
width: 48px;
height: 48px;
text-align: center;
border-radius: 7px;
margin-right: 8px;
}
/* WelcomeCardOne */
.hp-welcomeCard {
position: relative;
z-index: 0;
overflow: hidden;
width: 100%;
}
.hp-welcomeCard .hp-dot-1 {
width: 250px;
height: 250px;
position: absolute;
z-index: -1;
opacity: 0.5;
top: -58%;
left: -41%;
border-radius: 50%;
}
@media screen and (max-width: 1199px) {
.hp-welcomeCard .hp-dot-1 {
left: -20%;
}
}
@media screen and (max-width: 575px) {
.hp-welcomeCard .hp-dot-1 {
left: -40%;
}
}
.hp-welcomeCard .hp-img-1 {
position: absolute;
top: 50%;
-webkit-transform: translate(30%, -50%);
transform: translate(30%, -50%);
right: 0;
}
@media screen and (max-width: 575px) {
.hp-welcomeCard .hp-img-1 {
display: none;
}
}
.hp-welcomeCard .hp-img-2 {
position: absolute;
top: 50%;
-webkit-transform: translate(30%, -50%);
transform: translate(30%, -50%);
right: 0;
}
@media screen and (max-width: 575px) {
.hp-welcomeCard .hp-img-2 {
display: none;
}
}
.hp-welcomeCard .hp-img-3 {
position: absolute;
top: 50%;
-webkit-transform: translate(30%, -50%);
transform: translate(30%, -50%);
right: 0;
}
@media screen and (max-width: 575px) {
.hp-welcomeCard .hp-img-3 {
display: none;
}
}
.hp-welcomeCard .hp-img-4 {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
right: -14%;
}
@media screen and (max-width: 1199px) {
.hp-welcomeCard .hp-img-4 {
right: -10%;
}
}
@media screen and (max-width: 575px) {
.hp-welcomeCard .hp-img-4 {
display: none;
}
}
.hp-welcomeCard .hp-img-5 {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
right: -14%;
}
@media screen and (max-width: 1199px) {
.hp-welcomeCard .hp-img-5 {
right: -10%;
}
}
@media screen and (max-width: 575px) {
.hp-welcomeCard .hp-img-5 {
display: none;
}
}
/* UpgradePlanCardOne */
.hp-upgradePlanCardOne {
position: relative;
z-index: 0;
overflow: hidden;
width: 100%;
}
@media screen and (max-width: 767px) {
.hp-upgradePlanCardOne-bg {
background-position: 90% center !important;
}
.hp-upgradePlanCardOne .col {
-webkit-box-flex: 0 !important;
-ms-flex: 0 0 100% !important;
flex: 0 0 100% !important;
}
}
.hp-upgradePlanCardOne .hp-dot-1 {
width: 250px;
height: 250px;
position: absolute;
z-index: -1;
bottom: -10%;
left: -15%;
border-radius: 50%;
}
@media screen and (max-width: 575px) {
.hp-upgradePlanCardOne .hp-dot-1 {
display: none;
}
}
.hp-upgradePlanCardOne .hp-dot-2 {
width: 250px;
height: 250px;
position: absolute;
z-index: -2;
bottom: -90%;
right: -17%;
border-radius: 50%;
}
.hp-upgradePlanCardOne .hp-dot-3 {
width: 250px;
height: 250px;
position: absolute;
z-index: -1;
top: 0%;
right: -25%;
border-radius: 50%;
}
@media screen and (max-width: 575px) {
.hp-upgradePlanCardOne .hp-dot-3 {
display: none;
}
}
/* Social Media */
.hp-social-media-logo-wrapper {
width: 40px;
height: 40px;
text-align: center;
vertical-align: center;
border-radius: 7px;
position: relative;
}
.hp-social-media-logo-wrapper .hp-social-media-logo {
position: absolute;
margin: auto;
left: 0;
right: 0;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.hp-project-table-card.hp-analytics-project-table-card .table tbody > tr > td {
padding-top: 8px;
padding-bottom: 8px;
}
.hp-project-table-card .hp-img-container {
width: 36px;
height: 36px;
text-align: center;
border-radius: 7px;
margin-right: 8px;
}
.hp-project-table-card .table thead > tr > th {
background: none !important;
border-bottom: none;
}
.hp-project-table-card .table tbody > tr > td {
border-bottom: none;
}
/* Project Ecommerce Table */
.hp-project-ecommerce-table-card .table thead > tr > th {
background: none !important;
border-bottom: none;
}
.hp-project-ecommerce-table-card .table thead > tr > th:before {
visibility: hidden;
}
.hp-project-ecommerce-table-card .table thead > tr > th:first-child {
padding-left: 0;
}
.hp-project-ecommerce-table-card .table tbody > tr > td {
border-bottom: none;
padding-top: 15px;
padding-bottom: 15px;
}
.hp-project-ecommerce-table-card .table tbody > tr > td:first-child {
padding-left: 0;
}
.hp-project-ecommerce-table-card .table tbody > tr:first-child > td {
padding-top: 0px;
}
.hp-project-ecommerce-table-card .table tbody > tr:last-child > td {
border: none;
}
/* Order Table */
.hp-order-table-card .table thead tr th {
background: none !important;
border: none;
}
.hp-order-table-card .table tbody tr td {
border: none;
padding: 7px 16px;
}
.hp-order-table-card .table tbody tr td .hp-img-container {
width: 40px;
height: 40px;
}
/* Cards Control */
.hp-card-1 {
min-height: 120px;
}
.hp-card-2 {
min-height: 202px;
}
.hp-card-3 {
min-height: 272px;
}
.hp-card-4 {
min-height: 342px;
}
.hp-card-5 {
min-height: 352px;
}
.hp-card-6 {
min-height: 424px;
}
.hp-card-7 {
min-height: 576px;
}
.hp-card-8 {
min-height: 656px;
}
+141
View File
@@ -0,0 +1,141 @@
/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
color: #2d3436;
font-weight: 500;
}
h1 {
font-size: 42px;
line-height: 48px;
}
@media screen and (max-width: 767px) {
h1 {
font-size: 24px;
line-height: 28px;
}
}
h2 {
font-size: 28px;
line-height: 42px;
}
h3 {
font-size: 24px;
line-height: 28px;
}
h4 {
font-size: 20px;
line-height: 24px;
}
h5 {
font-size: 16px;
line-height: 24px;
}
h6 {
font-size: 14px;
}
.h1 {
font-size: 42px !important;
line-height: 48px !important;
}
@media screen and (max-width: 767px) {
.h1 {
font-size: 24px !important;
line-height: 28px !important;
}
}
.h2 {
font-size: 28px !important;
line-height: 42px !important;
}
.h3 {
font-size: 24px !important;
line-height: 28px !important;
}
.h4 {
font-size: 20px !important;
line-height: 24px !important;
}
.h5 {
font-size: 16px !important;
line-height: 24px !important;
}
.h6 {
font-size: 14px !important;
}
.hp-caption {
font-size: 12px;
line-height: 18px;
font-weight: 500;
}
.hp-p1-body {
font-size: 14px;
line-height: 21px;
color: #636e72;
font-weight: 400;
}
.hp-p2-body {
font-size: 14px;
line-height: 21px;
color: #636e72;
font-weight: 200;
}
.hp-button {
font-size: 14px;
line-height: 16px;
color: #636e72;
font-weight: 500;
}
.hp-placeholder {
font-size: 14px;
line-height: 16px;
color: #636e72;
font-weight: 300;
}
.hp-input-description {
font-size: 10px;
line-height: 12px;
color: #636e72;
font-weight: 500;
}
.hp-input-label {
font-size: 14px;
line-height: 16px;
color: #636e72;
font-weight: 500;
}
.hp-badge-text {
font-size: 12px;
line-height: 12px;
color: #636e72;
font-weight: 500;
}
+28556
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+112
View File
@@ -0,0 +1,112 @@
.hp-dir-block {
display: none;
}
body.direction-end {
/* Theme Dark */
/* Apex */
/* Customise */
/* Dashboard Ecommerce */
/* Authentication */
/* Accordion */
/* Popover */
/* Tooltip */
}
body.direction-end .hp-dir-none {
display: none;
}
body.direction-end .hp-dir-block {
display: block;
}
body.direction-end .hp-dir-block.hp-dark-block {
display: none;
}
body.direction-end .hp-dir-scale-x-n1 {
-webkit-transform: scale(-1, 1);
transform: scale(-1, 1);
}
body.direction-end.dark .hp-dir-block.hp-dark-none {
display: none;
}
body.direction-end.dark .hp-dir-block.hp-dark-block {
display: block;
}
body.direction-end.dark .hp-dir-none.hp-dark-block {
display: none;
}
body.direction-end .apexcharts-legend-marker {
margin-right: 3px;
margin-left: 0;
}
body.direction-end .hp-theme-customizer-button {
-webkit-transform: translate(96%, 0%) scale(-1, 1);
transform: translate(96%, 0%) scale(-1, 1);
}
@media screen and (max-width: 767px) {
body.direction-end .hp-theme-customizer-button {
-webkit-transform: translate(186%, 0px) scale(-0.9, 0.9);
transform: translate(186%, 0px) scale(-0.9, 0.9);
}
}
body.direction-end .hp-ecommerce-detail-card img {
-webkit-transform: scale(-1, 1);
transform: scale(-1, 1);
}
body.direction-end .hp-authentication-page .hp-other-links a + a {
padding-right: 16px;
margin-right: 16px;
}
body.direction-end .hp-authentication-page .hp-other-links a + a:last-child {
margin-left: 0;
padding-left: 0;
}
body.direction-end .hp-authentication-page .hp-other-links a + a:before {
right: 0;
left: auto;
}
body.direction-end .accordion-button::after {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
}
body.direction-end .accordion-button:not(.collapsed)::after {
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
}
body.direction-end .bs-popover-start > .popover-arrow,
body.direction-end .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
left: -0.5rem;
right: auto;
}
body.direction-end .bs-popover-end > .popover-arrow,
body.direction-end .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
right: -0.5rem;
left: auto;
}
body.direction-end .bs-tooltip-end .tooltip-inner,
body.direction-end .bs-tooltip-auto[data-popper-placement^=right] .tooltip-inner {
-webkit-box-shadow: 6px 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
box-shadow: 6px 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
body.direction-end .bs-tooltip-start .tooltip-inner,
body.direction-end .bs-tooltip-auto[data-popper-placement^=left] .tooltip-inner {
-webkit-box-shadow: -6px 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
box-shadow: -6px 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
body.direction-end .bs-tooltip-end .tooltip-arrow,
body.direction-end .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
right: 0;
left: auto;
}
body.direction-end .bs-tooltip-end .tooltip-arrow::before,
body.direction-end .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
right: 2px;
}
body.direction-end .bs-tooltip-start .tooltip-arrow,
body.direction-end .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
left: 0;
right: auto;
}
body.direction-end .bs-tooltip-start .tooltip-arrow::before,
body.direction-end .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
left: 2px;
}
+202
View File
@@ -0,0 +1,202 @@
/* Customise */
@-webkit-keyframes pulse {
0% {
-webkit-transform: scale(0.95);
transform: scale(0.95);
-webkit-box-shadow: 0 0 0 0 rgba(255, 69, 94, 0.7);
box-shadow: 0 0 0 0 rgba(255, 69, 94, 0.7);
}
70% {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-box-shadow: 0 0 0 6px rgba(255, 69, 94, 0);
box-shadow: 0 0 0 6px rgba(255, 69, 94, 0);
}
100% {
-webkit-transform: scale(0.95);
transform: scale(0.95);
-webkit-box-shadow: 0 0 0 0 rgba(255, 69, 94, 0);
box-shadow: 0 0 0 0 rgba(255, 69, 94, 0);
}
}
@keyframes pulse {
0% {
-webkit-transform: scale(0.95);
transform: scale(0.95);
-webkit-box-shadow: 0 0 0 0 rgba(255, 69, 94, 0.7);
box-shadow: 0 0 0 0 rgba(255, 69, 94, 0.7);
}
70% {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-box-shadow: 0 0 0 6px rgba(255, 69, 94, 0);
box-shadow: 0 0 0 6px rgba(255, 69, 94, 0);
}
100% {
-webkit-transform: scale(0.95);
transform: scale(0.95);
-webkit-box-shadow: 0 0 0 0 rgba(255, 69, 94, 0);
box-shadow: 0 0 0 0 rgba(255, 69, 94, 0);
}
}
.hp-theme-customizer {
position: fixed;
top: 0;
right: 0;
height: 100vh;
z-index: 4;
-webkit-transform: translate(100%, 0);
transform: translate(100%, 0);
-webkit-transition: 0.4s;
transition: 0.4s;
}
.hp-theme-customizer.active {
-webkit-transform: translate(0%, 0) !important;
transform: translate(0%, 0) !important;
-webkit-box-shadow: -13px 0px 20px rgba(0, 0, 0, 0.05);
box-shadow: -13px 0px 20px rgba(0, 0, 0, 0.05);
}
.hp-theme-customizer.active .hp-theme-customizer-button-bg svg path {
fill: #ffffff;
}
.hp-theme-customizer.active .hp-theme-customizer-button-icon svg path {
fill: #0010f7;
}
.hp-theme-customizer-button {
height: 120px;
width: 50px;
position: absolute;
top: 140px;
-webkit-transform: translate(-100%, 0);
transform: translate(-100%, 0);
cursor: pointer;
}
.hp-theme-customizer-button-bg {
position: absolute;
top: 0;
bottom: 0;
right: 0;
}
.hp-theme-customizer-button-bg svg path {
fill: #0010f7;
-webkit-transition: 0.4s;
transition: 0.4s;
}
.hp-theme-customizer-button-icon {
position: absolute;
top: 49px;
right: 14px;
}
.hp-theme-customizer-button-icon svg path {
fill: #ffffff;
-webkit-transition: 0.4s;
transition: 0.4s;
}
.hp-theme-customizer-button-icon > span {
position: absolute;
top: -4px;
right: -6px;
width: 6px;
height: 6px;
border-radius: 100%;
background: #ff0022;
-webkit-transform: scale(1);
transform: scale(1);
-webkit-box-shadow: 0 0 0 0 rgb(255, 69, 94);
box-shadow: 0 0 0 0 rgb(255, 69, 94);
-webkit-animation: pulse 2s infinite;
animation: pulse 2s infinite;
}
.hp-theme-customizer-container {
width: 396px;
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.hp-theme-customizer-container-header button {
margin-right: -24px;
margin-top: -6px;
}
.hp-theme-customizer-container-body {
overflow-y: auto;
overflow-x: hidden;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
}
.hp-theme-customizer-container-body::-webkit-scrollbar {
width: 0;
}
.hp-theme-customizer-container-body-item + .hp-theme-customizer-container-body-item {
margin-top: 24px;
padding-top: 24px;
border-top: 1px dashed #dfe6e9;
}
.hp-theme-customizer-container-body-item-svg {
position: relative;
height: 101px;
border: 2px solid #dfe6e9;
-webkit-transition: 0.4s;
transition: 0.4s;
cursor: pointer;
}
.hp-theme-customizer-container-body-item-svg svg {
width: 100%;
height: 100%;
}
.hp-theme-customizer-container-body-item-svg-check {
position: absolute;
top: -3px;
right: 0;
-webkit-transform: translate(50%, -50%) scale(0);
transform: translate(50%, -50%) scale(0);
-webkit-transition: 0.4s;
transition: 0.4s;
}
.hp-theme-customizer-container-body-item-svg-check svg {
width: 20px;
height: 20px;
}
.hp-theme-customizer-container-body-item-svg-other {
cursor: pointer;
border: 2px solid #dfe6e9;
height: 33px;
-webkit-transition: 0.4s;
transition: 0.4s;
}
.hp-theme-customizer-container-body-item-svg-other svg {
width: 100%;
height: 100%;
}
.hp-theme-customizer-container-body-item-svg-other.active {
border-color: #2d3436;
}
.hp-theme-customizer-container-body-item-svg.active {
border-color: #2d3436;
}
.hp-theme-customizer-container-body-item-svg.active .hp-theme-customizer-container-body-item-svg-check {
-webkit-transform: translate(40%, -30%) scale(1);
transform: translate(40%, -30%) scale(1);
}
@media screen and (max-width: 767px) {
.hp-theme-customizer-container {
width: 270px;
}
.hp-theme-customizer-container-body-item-svg {
height: 138px;
}
.hp-theme-customizer-container-body-item-svg-other {
height: 45px;
}
.hp-theme-customizer-button {
-webkit-transform: translate(-100%, -50%) scale(0.9);
transform: translate(-100%, -50%) scale(0.9);
-webkit-transform-origin: right;
transform-origin: right;
}
}
+221
View File
@@ -0,0 +1,221 @@
/* Header Logo */
.hp-header-logo-icon {
left: 21px;
}
/* Header */
body.header-full .hp-main-layout header {
padding-top: 0;
padding-bottom: 0;
background: #ffffff;
border-radius: 0;
margin-bottom: 32px;
height: 64px;
width: 100%;
}
.hp-main-layout {
/* Basket */
}
.hp-main-layout > header {
background: none;
padding: 16px 32px 32px;
border-radius: 7px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
z-index: 3;
height: 112px;
}
.hp-main-layout > header > .row {
height: 100%;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.hp-main-layout > header > .row > .col {
border-radius: 7px;
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.hp-main-layout > header .hp-header-start-text-item {
line-height: 32px;
}
.hp-main-layout > header .hp-header-start-text-item .remix-icon {
vertical-align: text-bottom;
}
.hp-main-layout > header .hp-header-search {
opacity: 0;
visibility: hidden;
-webkit-transform: translate(-30px, 0);
transform: translate(-30px, 0);
}
.hp-main-layout > header .hp-header-search.active {
opacity: 1;
visibility: visible;
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
-webkit-transition: 0.4s;
transition: 0.4s;
}
@media screen and (max-width: 767px) {
.hp-main-layout > header .hp-header-search {
position: absolute;
bottom: -60px;
left: -6px;
right: -25px;
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: auto;
max-width: initial;
}
}
.hp-main-layout > header .hp-mobile-sidebar-button {
display: none;
}
.hp-main-layout > header .hp-header-profile-menu {
right: -10px;
}
.hp-main-layout > header .hp-notification-menu {
width: 380px;
right: -10px;
}
@media screen and (max-width: 767px) {
.hp-main-layout > header .hp-notification-menu {
width: 290px;
}
}
.hp-main-layout > header .hp-notification-circle {
left: 62%;
}
@media screen and (max-width: 1380px) {
.hp-main-layout > header .hp-header-start-text-item {
line-height: normal;
}
}
@media screen and (max-width: 1199px) {
.hp-main-layout > header .hp-mobile-sidebar-button {
display: block;
}
.hp-main-layout > header .hp-header-start-text {
display: none !important;
}
.hp-main-layout > header .hp-header-logo {
display: none !important;
}
}
@media screen and (max-width: 767px) {
.hp-main-layout > header {
padding: 16px 16px 32px;
}
.hp-main-layout > header.hp-header-full {
padding: 0 6px 16px;
}
}
.hp-main-layout .hp-basket-dropdown-button:hover .hp-basket-dropdown {
opacity: 1;
visibility: visible;
pointer-events: all;
}
.hp-main-layout .hp-basket-dropdown {
position: absolute;
width: 350px;
padding: 44px 24px 18px;
top: 40px;
right: -10px;
opacity: 0;
visibility: hidden;
pointer-events: none;
-webkit-transition: 0.4s;
transition: 0.4s;
}
.hp-main-layout .hp-basket-dropdown.remove-cart {
opacity: 0 !important;
visibility: hidden !important;
pointer-events: none !important;
}
.hp-main-layout .hp-basket-dropdown-list {
overflow-y: auto;
overflow-x: hidden;
max-height: 300px;
padding: 0 10px;
margin: 0 -10px;
}
.hp-main-layout .hp-basket-dropdown-list::-webkit-scrollbar {
width: 0;
}
@media screen and (max-width: 767px) {
.hp-main-layout .hp-basket-dropdown-list-item-price {
margin-left: 20px;
}
}
.hp-main-layout .hp-basket-dropdown:before {
content: "";
position: absolute;
top: 19px;
left: 0;
right: 0;
bottom: 0;
background: #ffffff;
border-radius: 8px;
}
.hp-main-layout .hp-basket-dropdown > div {
position: relative;
}
@media screen and (max-width: 767px) {
.hp-main-layout .hp-basket-dropdown {
right: 100%;
left: auto;
-webkit-transform: translate(25.5%, 0px);
transform: translate(25.5%, 0px);
min-width: 300px;
}
}
/* Search */
.autocomplete-suggestions {
position: absolute;
margin-top: 10px;
left: 0;
right: 0;
background: #ffffff;
overflow-y: auto;
overflow-x: hidden;
max-height: 200px;
border-radius: 16px;
}
.autocomplete-suggestions::-webkit-scrollbar {
width: 0;
}
.autocomplete-suggestions .autocomplete-suggestion {
padding: 10px 16px;
margin: 4px 0;
font-size: 12px;
cursor: pointer;
-webkit-transition: 0.3s;
transition: 0.3s;
font-weight: 500;
}
.autocomplete-suggestions .autocomplete-suggestion strong {
font-weight: 500;
}
.autocomplete-suggestions .autocomplete-suggestion:hover {
background: #ebfafa;
}
@media screen and (max-width: 767px) {
.autocomplete-suggestions {
top: 45px;
border-radius: 16px;
-webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
}
}
@@ -0,0 +1,140 @@
/* Horizontal Menu */
body.horizontal-active .hp-horizontal-menu.search-active {
display: none !important;
}
@media screen and (max-width: 1199px) {
body.horizontal-active .hp-horizontal-menu {
display: none !important;
}
}
.hp-horizontal-menu ul li a {
color: #636e72;
}
.hp-horizontal-menu > ul > li > a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-radius: 7px;
}
.hp-horizontal-menu > ul > li > a > i {
color: #b2bec3;
font-size: 13px;
margin-left: 4px;
}
.hp-horizontal-menu > ul > li > a:hover, .hp-horizontal-menu > ul > li > a:focus {
background: #f7fafc;
color: #2d3436;
}
.hp-horizontal-menu > ul > li > a.active {
background: #f7fafc;
color: #2d3436;
}
.hp-horizontal-menu > ul > li ul {
min-width: 200px;
padding: 0;
border: none;
background: none;
-webkit-box-shadow: none;
box-shadow: none;
}
.hp-horizontal-menu > ul > li ul li a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 12px 18px;
}
.hp-horizontal-menu > ul > li ul li a > span {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.hp-horizontal-menu > ul > li ul li a > span > i {
margin-right: 8px;
}
.hp-horizontal-menu > ul > li ul li a > span .submenu-item-icon {
margin-right: 8px;
}
.hp-horizontal-menu > ul > li ul li a .dropdown-menu-arrow {
margin-left: 8px;
width: 20px;
height: 20px;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1.5' d='M19.92 8.95l-6.52 6.52c-.77.77-2.03.77-2.8 0L4.08 8.95'/%3E%3C/svg%3E") transparent no-repeat 50%/contain;
}
.hp-horizontal-menu > ul > li ul li a:hover, .hp-horizontal-menu > ul > li ul li a:focus {
background: none;
color: #0010f7;
}
.hp-horizontal-menu > ul > li ul li a.dropdown-item.active {
background: none !important;
}
.hp-horizontal-menu > ul > li ul li a.active {
background: #ffffff;
color: #0010f7;
}
.hp-horizontal-menu ul > li {
position: relative;
padding-bottom: 5px;
margin-bottom: -5px;
}
.hp-horizontal-menu ul > li > ul > li ul {
-webkit-transform: translate(0px, 0) !important;
transform: translate(0px, 0) !important;
left: 100% !important;
top: 0 !important;
margin: 0 -5px !important;
padding: 8px 0;
}
.hp-horizontal-menu ul > li > ul > li:hover > ul,
.hp-horizontal-menu ul > li > ul > li > ul > li:hover > ul {
display: block;
}
.hp-horizontal-menu ul > li ul:before {
content: "";
position: absolute;
top: 0;
left: 0px;
right: 10px;
bottom: 0;
background: #f0f3f5;
border-radius: 7px;
-webkit-box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.01), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.01), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
z-index: -1;
}
.hp-horizontal-menu ul > li ul ul:before {
right: 0;
}
.hp-horizontal-menu ul > li ul li a {
padding: 12px 14px 12px 10px;
margin: 4px 10px 4px 0;
width: auto;
}
.hp-horizontal-menu ul > li:hover > ul {
display: block;
}
.hp-horizontal-menu ul > li > ul {
left: 12px !important;
-webkit-transform: translate(0px, 0px) !important;
transform: translate(0px, 0px) !important;
top: 95% !important;
}
@media screen and (max-width: 1199px) {
.hp-horizontal-menu {
display: none;
}
}
@@ -0,0 +1,7 @@
/* Page Content */
.hp-page-content .breadcrumb-item.breadcrumb-link a {
color: #ffffff;
}
.hp-page-content .breadcrumb-item.breadcrumb-link a:hover {
color: #0063f7;
}
+486
View File
@@ -0,0 +1,486 @@
/* Sider */
.hp-logo {
height: 45px;
}
body.collapsed-active .hp-main-layout {
max-width: calc(100% - 80px);
-webkit-box-flex: 0;
-ms-flex: 0 0 calc(100% - 80px);
flex: 0 0 calc(100% - 80px);
}
body.collapsed-active .hp-sidebar-visible {
display: block !important;
}
body.collapsed-active .hp-sidebar-visible.hp-dark-block {
display: none !important;
}
body.collapsed-active .hp-sidebar-hidden {
display: none !important;
}
body.collapsed-active .hp-sidebar {
-webkit-box-flex: 0;
-ms-flex: 0 0 80px;
flex: 0 0 80px;
min-width: 80px;
padding: 0;
}
body.collapsed-active .hp-sidebar .hp-sidebar-header-menu > .row {
margin: 24px 0 0 !important;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
body.collapsed-active .hp-sidebar .hp-sidebar-header-menu .hp-header-logo {
margin-top: 12px;
}
body.collapsed-active .hp-sidebar .hp-sidebar-header-menu > ul {
padding: 5px 0 24px;
margin-left: 0;
}
body.collapsed-active .hp-sidebar .hp-sidebar-header-menu > ul li {
text-align: center;
}
body.collapsed-active .hp-sidebar .hp-sidebar-header-menu > ul li .badge {
display: none;
}
body.collapsed-active .hp-sidebar .hp-sidebar-header-menu > ul li .menu-title {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
margin: 0 auto 12px;
max-width: 90%;
text-align: center;
}
body.collapsed-active .hp-sidebar .hp-sidebar-header-menu > ul > li > ul li a {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin: 0 -24px;
}
body.collapsed-active .hp-sidebar .hp-sidebar-header-menu > ul > li > ul li a .menu-arrow {
display: none;
}
body.collapsed-active .hp-sidebar .hp-sidebar-header-menu > ul > li > ul li a i {
margin: 0;
}
body.collapsed-active .hp-sidebar .hp-sidebar-header-menu > ul > li > ul li a .submenu-item-icon {
margin: 0;
}
body.collapsed-active .hp-sidebar .hp-sidebar-header-menu > ul > li > ul li a > span > span:nth-child(2) {
display: none;
}
body.collapsed-active .hp-sidebar .hp-sidebar-footer {
padding-bottom: 16px !important;
}
body.collapsed-active .hp-sidebar .hp-sidebar-footer > .col > .row {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
body.collapse-btn-none .hp-sidebar-collapse-button,
body.collapse-btn-none.collapsed-active .hp-sidebar-collapse-button {
display: none !important;
}
.sidebar-tooltip {
left: 75px !important;
}
.sidebar-tooltip .arrow {
left: 0;
-webkit-transform: scale(-1);
transform: scale(-1);
}
.hp-sidebar {
-webkit-box-flex: 0;
-ms-flex: 0 0 316px;
flex: 0 0 316px;
height: 100vh;
position: sticky;
top: 0;
padding: 20px 32px 42px 42px;
}
.hp-sidebar-visible {
display: none;
}
.hp-sidebar-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
height: 100%;
}
.hp-sidebar-container .hp-sidebar-header-menu {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
overflow: hidden;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding-top: 5px;
padding-left: 14px;
margin-top: -5px;
margin-left: -14px;
}
.hp-sidebar-container .hp-sidebar-header-menu ul {
margin-left: -14px;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul {
margin-top: 40px;
margin-left: -14px;
padding-bottom: 40px;
padding-left: 14px;
overflow-y: auto;
overflow-x: hidden;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul::-webkit-scrollbar {
width: 0;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li + li {
margin-top: 50px;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul li {
list-style: none;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul li .menu-title {
color: #0063f7;
font-size: 12px;
font-weight: 600;
margin-bottom: 20px;
text-transform: uppercase;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 14px 0 14px 14px;
border-radius: 7px;
margin: 0;
background: none;
-webkit-transition: 0.3s;
transition: 0.3s;
position: relative;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a:before {
content: "";
position: absolute;
top: 50%;
-webkit-transform: translate(0, -50%);
transform: translate(0, -50%);
right: 5px;
width: 2px;
background: #2d3436;
height: 0%;
display: block;
border-radius: 2px;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a .tooltip-item {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a .tooltip-item.in-active {
pointer-events: none;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a > span {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
line-height: 1;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a > span > span {
display: block;
color: #636e72;
font-size: 14px;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a > span > i {
color: #2d3436;
margin-right: 16px;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a > span > .submenu-item-icon {
margin-right: 16px;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a > span > .submenu-item-icon svg path {
fill: rgba(255, 255, 255, 0);
stroke: #2d3436;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a .menu-arrow {
position: relative;
width: 20px;
height: 20px;
-webkit-transition: 0.3s;
transition: 0.3s;
-webkit-transform-origin: center;
transform-origin: center;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a .menu-arrow:before {
content: "";
position: absolute;
top: 50%;
right: 0;
width: 100%;
height: 100%;
-webkit-transform: translate(0, -50%);
transform: translate(0, -50%);
background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1.5' d='M19.92 8.95l-6.52 6.52c-.77.77-2.03.77-2.8 0L4.08 8.95'/%3E%3C/svg%3E") transparent no-repeat 50%/contain;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a.active {
color: #2d3436;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a.active:not(.submenu-item) {
background: #ffffff;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a.active:not(.submenu-item):before {
height: 70%;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a.active:not(.submenu-item) .submenu-item-icon svg path {
fill: #111314 !important;
stroke: #ffffff !important;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a.active i {
color: #2d3436 !important;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a.active .submenu-item-icon svg path {
stroke: #111314 !important;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a.active > span > span {
color: #2d3436;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a.arrow-active .menu-arrow {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a:hover {
color: #2d3436;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a:hover i {
color: #2d3436 !important;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a:hover .submenu-item-icon svg path {
stroke: #111314 !important;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a:hover > span {
color: #2d3436 !important;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a:hover > span > span {
color: #2d3436;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li .collapse {
padding: 0 12px;
margin: 0 -12px;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li .submenu-children {
margin-left: 44px;
display: none;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li .submenu-children .submenu-children {
margin-left: 12px;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li .submenu-children li {
margin: 4px 0;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li .submenu-children li > a {
border-radius: 7px;
padding: 16px 13px;
margin: 0 0 0 -12px;
position: relative;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li .submenu-children li > a > span {
display: inline-block;
font-size: 14px;
color: #636e72;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li .submenu-children li > a.active > span {
color: #2d3436;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li .submenu-children li > a.active:not(.submenu-item) {
background: #ffffff;
}
.hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li .submenu-children li > a.active:not(.submenu-item):before {
height: 70%;
}
.hp-sidebar .sider-children {
height: auto;
overflow: hidden;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
/* Sider Mobile */
.hp-main-layout > header .hp-mobile-sidebar .hp-header-logo {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.hp-mobile-sidebar .hp-sidebar {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
display: none;
overflow: hidden;
padding: 0 4px 18px;
border: none !important;
}
.hp-mobile-sidebar .hp-sidebar .hp-sidebar-container .hp-sidebar-header-menu {
margin-left: 0;
}
.hp-mobile-sidebar .hp-sidebar .hp-sidebar-container .hp-sidebar-header-menu > .row {
display: none;
}
.hp-mobile-sidebar .hp-sidebar .hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a {
padding-right: 4px;
}
.hp-mobile-sidebar .hp-sidebar .hp-sidebar-container .hp-sidebar-header-menu > ul > li > ul li a .menu-arrow {
margin-right: 4px;
}
.hp-mobile-sidebar .hp-sidebar .hp-sidebar-container .hp-sidebar-footer {
padding: 0 12px;
}
/* Sider Collapse Dropdown */
.hp-sidebar-dropdown-container {
z-index: 99;
}
.hp-sidebar-dropdown-container ul {
min-width: 160px;
margin: 0;
border-radius: 7px;
padding: 0 4px;
overflow-y: auto;
overflow-x: hidden;
}
.hp-sidebar-dropdown-container ul:before {
content: "";
position: absolute;
top: 0;
left: 4px;
right: 4px;
bottom: 0;
border-radius: 7px;
background: #f0f3f5;
-webkit-box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.012), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.012), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.hp-sidebar-dropdown-container ul li {
list-style: none;
position: relative;
}
.hp-sidebar-dropdown-container ul li a {
font-size: 14px;
color: #636e72;
padding: 13px 12px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin: 4px 0;
-webkit-transition: 0.3s;
transition: 0.3s;
position: relative;
overflow: hidden;
}
.hp-sidebar-dropdown-container ul li a > span {
position: relative;
}
.hp-sidebar-dropdown-container ul li a:before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #ebfafa;
opacity: 0;
}
.hp-sidebar-dropdown-container ul li a:hover {
color: #0010f7;
}
.hp-sidebar-dropdown-container ul li a.active {
color: #0010f7;
}
.hp-sidebar-dropdown-container ul li a.active:before {
opacity: 1;
}
.hp-sidebar-dropdown-container ul li a .menu-arrow {
position: relative;
width: 20px;
height: 20px;
margin-right: -7px;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.hp-sidebar-dropdown-container ul li a .menu-arrow:before {
content: "";
position: absolute;
top: 50%;
right: 0;
width: 100%;
height: 100%;
-webkit-transform: translate(0, -50%) rotate(-90deg);
transform: translate(0, -50%) rotate(-90deg);
background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1.5' d='M19.92 8.95l-6.52 6.52c-.77.77-2.03.77-2.8 0L4.08 8.95'/%3E%3C/svg%3E") transparent no-repeat 50%/contain;
}
.hp-sidebar-dropdown-container ul li .submenu-children {
position: absolute;
top: 0;
left: 100%;
}
@media screen and (max-width: 1199px) {
.hp-mobile-sidebar .hp-sidebar {
display: block;
}
.hp-sidebar {
display: none;
}
}
@@ -0,0 +1,38 @@
/* App Contact Detail */
.hp-contact-detail-content-list ul {
list-style: none;
margin: 0;
padding: 0;
}
.hp-contact-detail-content-list ul li {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.hp-contact-detail-content-list ul li span {
display: block;
}
.hp-contact-detail-content-list ul li span:nth-child(1) {
min-width: 200px;
}
@media screen and (max-width: 767px) {
.hp-contact-detail-content-list ul li {
display: block;
}
.hp-contact-detail-content-list ul li span:nth-child(1) {
min-width: initial;
}
}
@media screen and (max-width: 767px) {
.hp-contact-detail-sidebar {
-webkit-box-flex: 0 !important;
-ms-flex: 0 0 100% !important;
flex: 0 0 100% !important;
}
.hp-contact-detail-sidebar .hp-footer-img {
display: none;
}
}
@@ -0,0 +1,14 @@
/* App Contact */
.hp-contact-card .table > thead > tr > th {
background: none;
font-size: 16px;
line-height: 16px;
font-weight: 500;
}
.hp-contact-card .table > thead > tr > th:nth-child(2), .hp-contact-card .table > thead > tr > th:nth-child(6) {
min-width: 200px;
}
.hp-contact-card .table > thead > tr > th,
.hp-contact-card .table > tbody > tr > td {
padding: 16px 32px;
}
@@ -0,0 +1,91 @@
/* App Ecommerce */
.hp-ecommerce-app {
/* Shop Sidebar */
/* Shop Header */
/* Shop Content */
/* Detail */
/* Checkout */
}
.hp-ecommerce-app-sidebar-mobile {
display: none;
}
.hp-ecommerce-app-sidebar-mobile-btn {
display: none;
}
@media screen and (max-width: 991px) {
.hp-ecommerce-app-sidebar {
display: none;
}
.hp-ecommerce-app-sidebar-mobile {
width: 255px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.hp-ecommerce-app-sidebar-mobile .hp-ecommerce-app-sidebar {
display: block;
}
.hp-ecommerce-app-sidebar-mobile-btn {
display: block;
}
}
.hp-ecommerce-app-header .nav .btn.active svg > path {
fill: #0010f7;
}
@media screen and (max-width: 767px) {
.hp-ecommerce-app-header-search {
-webkit-box-flex: 0 !important;
-ms-flex: 0 0 100% !important;
flex: 0 0 100% !important;
}
.hp-ecommerce-app-header-select {
-webkit-box-flex: 1 !important;
-ms-flex: 1 0 0px !important;
flex: 1 0 0 !important;
}
}
.hp-ecommerce-app-content .hp-eCommerceCardOne img {
max-height: auto;
}
.hp-ecommerce-app-detail-slider img {
max-height: 600px;
padding: 10px;
}
.hp-ecommerce-app-detail-slider-2 {
width: 80%;
margin: 0 auto;
}
.hp-ecommerce-app-detail-slider-2 .hp-slide-item > div {
width: 75px;
height: 75px;
}
.hp-ecommerce-app-detail-slider-2 .swiper-slide-active .hp-slide-item > div {
border-color: #636e72 !important;
}
@media screen and (max-width: 767px) {
.hp-ecommerce-app-detail-slider-2 {
width: 100%;
}
}
@media screen and (max-width: 767px) {
.hp-ecommerce-app-checkout-item-img {
-webkit-box-flex: 0 !important;
-ms-flex: 0 0 100% !important;
flex: 0 0 100% !important;
}
}
@media screen and (max-width: 767px) {
.hp-ecommerce-app-checkout-item-text {
-webkit-box-flex: 0 !important;
-ms-flex: 0 0 100% !important;
flex: 0 0 100% !important;
}
}
.hp-ecommerce-app-checkout-title-table {
padding-left: 190px;
}
@media screen and (max-width: 767px) {
.hp-ecommerce-app-checkout-title-table {
display: none;
}
}
@@ -0,0 +1,59 @@
/* Authentication */
.hp-authentication-page {
position: relative;
min-height: 100vh;
margin: 0 !important;
overflow: hidden;
}
@media screen and (max-width: 767px) {
.hp-authentication-page .hp-auth-header-title {
display: none;
}
}
.hp-authentication-page .hp-logo-item {
position: absolute;
top: 0;
left: 0;
}
.hp-authentication-page .hp-bg-item {
margin-top: 100px;
}
.hp-authentication-page .hp-text-item {
margin-top: -250px;
}
@media screen and (max-width: 767px) {
.hp-authentication-page .hp-text-item {
margin-top: -80px;
padding: 0 24px;
}
}
.hp-authentication-page .hp-or-line {
position: relative;
}
.hp-authentication-page .hp-or-line:before {
content: "";
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 1px;
-webkit-transform: translate(0, -50%);
transform: translate(0, -50%);
background-color: #dfe6e9;
z-index: -1;
}
.hp-authentication-page .hp-other-links a + a {
position: relative;
padding-left: 16px;
margin-left: 16px;
}
.hp-authentication-page .hp-other-links a + a:before {
content: "";
position: absolute;
top: 49%;
left: 0;
width: 3px;
height: 3px;
border-radius: 100%;
background-color: #636e72;
}
@@ -0,0 +1,35 @@
/* Dashboard analytics */
.hp-analytics-col-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 360px;
flex: 0 0 360px;
}
@media screen and (max-width: 1199px) {
.hp-analytics-col-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
}
}
.hp-dashboard-line {
display: none;
}
body.content-width-boxed .hp-dashboard-line {
display: block;
}
@media screen and (max-width: 1199px) {
body.content-width-boxed .hp-dashboard-line {
display: none;
}
}
.hp-dashboard-feature-card .hp-dashboard-feature-card-icon svg {
-webkit-transition: 0.4s;
transition: 0.4s;
}
.hp-dashboard-feature-card:hover .hp-dashboard-feature-card-icon svg {
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
@@ -0,0 +1,53 @@
/* Dashboard Ecommerce */
body.horizontal-active .hp-ecommerce-detail-card img {
max-width: 80%;
}
@media screen and (max-width: 1599px) {
body.horizontal-active .hp-ecommerce-detail-card img {
max-width: 100%;
}
}
@media screen and (max-width: 1199px) {
body.horizontal-active .hp-ecommerce-detail-card img {
max-width: 85%;
}
}
@media screen and (max-width: 767px) {
body.horizontal-active .hp-ecommerce-detail-card img {
max-width: 100%;
}
}
.hp-ecommerce-detail-card img {
position: absolute;
bottom: -50px;
right: -70px;
max-width: 90%;
}
@media screen and (max-width: 1599px) {
.hp-ecommerce-detail-card img {
max-width: 100%;
}
}
@media screen and (max-width: 1199px) {
.hp-ecommerce-detail-card img {
max-width: 85%;
}
}
@media screen and (max-width: 767px) {
.hp-ecommerce-detail-card img {
max-width: 100%;
}
}
.hp-dashboard-ecommerce-product-slider .slick-slider {
width: 100%;
}
.hp-dashboard-ecommerce-product-slider-button {
position: absolute;
top: -56px;
right: 16px;
}
.hp-dashboard-ecommerce-product-slider-button.prev-button {
right: 64px;
}
@@ -0,0 +1,37 @@
/* Components */
.hp-components-menu .swiper-slide {
width: auto;
}
.hp-components-menu .nav {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.hp-components-menu .nav-link.active {
color: #fff !important;
background: black !important;
}
.hp-components-item {
-webkit-transition: 0.4s;
transition: 0.4s;
}
.hp-components-item-title {
-webkit-transition: 0.3s;
transition: 0.3s;
}
.hp-components-item-img img {
-webkit-transition: 0.3s;
transition: 0.3s;
}
.hp-components-item:hover {
-webkit-box-shadow: 0px 16px 32px rgba(0, 16, 247, 0.04);
box-shadow: 0px 16px 32px rgba(0, 16, 247, 0.04);
background: #ffffff !important;
}
.hp-components-item:hover .hp-components-item-img img {
-webkit-transform: scale(0.9);
transform: scale(0.9);
}
.hp-components-item:hover .hp-components-item-title {
color: #0010f7 !important;
}
+44
View File
@@ -0,0 +1,44 @@
/* Error */
.hp-error-content {
min-height: calc(100vh - 189px);
}
.hp-error-content-title {
font-size: 22vw;
line-height: 1.2;
}
@media screen and (max-width: 1199px) {
.hp-error-content-title {
font-size: 32vw;
}
}
@media screen and (max-width: 767px) {
.hp-error-content-title {
font-size: 45vw;
}
}
.hp-error-content .hp-comingsoon-timer-item {
min-width: 200px;
}
.hp-error-content .hp-comingsoon-timer-item span:nth-child(1) {
font-size: 100px;
}
@media screen and (max-width: 1199px) {
.hp-error-content .hp-comingsoon-timer-item {
min-width: 16vw;
}
.hp-error-content .hp-comingsoon-timer-item span:nth-child(1) {
font-size: 8vw;
}
}
@media screen and (max-width: 767px) {
.hp-error-content .hp-comingsoon-timer-item {
min-width: 18vw;
}
.hp-error-content .hp-comingsoon-timer-item span:nth-child(1) {
font-size: 11vw;
margin-bottom: -8px;
}
.hp-error-content .hp-comingsoon-timer-item span:nth-child(2) {
font-size: 3vw;
}
}
+38
View File
@@ -0,0 +1,38 @@
/* FAQ */
.hp-collapse-arrow {
display: inline-block;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
-webkit-transition: 0.4s;
transition: 0.4s;
}
.collapsed .hp-collapse-arrow {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
@media screen and (max-width: 767px) {
.hp-faq-tabs .nav-item {
min-width: 190px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
}
.hp-faq-tabs .nav-link i {
-webkit-transition: 0.15s ease-in-out;
transition: 0.15s ease-in-out;
}
.hp-faq-tabs .nav-link.active i {
color: #ffffff !important;
}
.hp-faq-tabs .nav-link.active:hover i {
color: #ffffff !important;
}
.hp-faq-tabs .nav-link:hover i {
color: #0063f7 !important;
}
@@ -0,0 +1,37 @@
/* Invoice */
@media screen and (max-width: 767px) {
.hp-invoice-table-desc {
min-width: 300px;
}
}
@media screen and (max-width: 767px) {
.hp-invoice-table-th {
min-width: 70px;
}
}
.hp-invoice-card p {
margin: 0;
color: #636e72;
line-height: 21px;
}
@media print {
body {
padding: 0;
margin: 0;
}
.hp-sidebar,
header,
footer,
.hp-print-none,
.hp-exchange-card {
display: none;
}
.hp-invoice-card {
border-width: 1px !important;
}
}
@@ -0,0 +1,7 @@
/* Knowledge Base */
.hp-knowledge-basic-card {
min-height: 200px;
-ms-flex-line-pack: justify;
align-content: space-between;
display: block;
}
+426
View File
@@ -0,0 +1,426 @@
.hp-landing-container {
max-width: 1184px;
margin: 0 auto;
padding: 0 32px;
}
@media screen and (max-width: 767px) {
.hp-landing-container {
padding: 0 16px;
}
}
.hp-landing header .hp-landing-header-mobile-button {
display: none;
}
@media screen and (max-width: 767px) {
.hp-landing header .hp-landing-header-menu {
display: none !important;
}
.hp-landing header .hp-landing-header-buttons {
display: none;
}
.hp-landing header .hp-landing-header-mobile-button {
display: block;
}
}
.hp-landing-hero {
position: relative;
overflow: hidden;
}
.hp-landing-hero-title {
max-width: 790px;
margin: 0 auto;
}
.hp-landing-hero-img {
position: relative;
max-width: 1100px;
height: 450px;
margin: 0 auto;
}
.hp-landing-hero-img-container {
width: 100%;
height: 100%;
-webkit-transform: translate(0px, 10px);
transform: translate(0px, 10px);
}
.hp-landing-hero-img-item {
background-size: contain;
background-position: center bottom;
background-repeat: no-repeat;
height: 100%;
position: relative;
-webkit-filter: drop-shadow(2px 4px 46px rgba(0, 0, 0, 0.1));
filter: drop-shadow(2px 4px 46px rgba(0, 0, 0, 0.1));
}
.hp-landing-hero-img-left {
position: absolute;
bottom: 20px;
left: 6%;
}
.hp-landing-hero-img-left .hp-landing-hero-img-emoji:nth-child(1) {
font-size: 40px;
-webkit-transform: rotate(28deg);
transform: rotate(28deg);
margin-bottom: 80px;
margin-left: 40px;
}
.hp-landing-hero-img-left .hp-landing-hero-img-emoji:nth-child(2) {
margin-left: 30px;
margin-bottom: 0px;
}
.hp-landing-hero-img-left .hp-landing-hero-img-emoji:nth-child(3) {
font-size: 40px;
-webkit-transform: rotate(28deg);
transform: rotate(28deg);
margin-bottom: 20px;
margin-left: -30px;
}
.hp-landing-hero-img-right {
position: absolute;
bottom: 30px;
right: 6%;
text-align: center;
}
.hp-landing-hero-img-right .hp-landing-hero-img-emoji:nth-child(1) {
font-size: 20px;
margin-bottom: 60px;
margin-left: 70px;
}
.hp-landing-hero-img-right .hp-landing-hero-img-emoji:nth-child(2) {
font-size: 40px;
margin-bottom: 20px;
margin-left: -40px;
}
.hp-landing-hero-img-right .hp-landing-hero-img-emoji:nth-child(3) {
margin-bottom: 30px;
margin-left: -220px;
}
.hp-landing-hero-rectangle {
border-radius: 50px;
-webkit-transform: rotate(-22deg);
transform: rotate(-22deg);
width: 256px;
height: 256px;
position: absolute;
bottom: -100px;
left: 0;
}
.hp-landing-hero-circle {
width: 282px;
height: 282px;
border-radius: 100%;
position: absolute;
top: -60px;
right: -40px;
}
@media screen and (max-width: 1450px) {
.hp-landing-hero-img-left {
left: 30px;
}
.hp-landing-hero-img-right {
right: 30px;
}
}
@media screen and (max-width: 1199px) {
.hp-landing-hero-img {
max-width: 80vw;
height: 360px;
}
}
@media screen and (max-width: 991px) {
.hp-landing-hero-title {
max-width: 580px;
}
.hp-landing-hero-img {
max-width: 100%;
height: 42vw;
}
.hp-landing-hero-img-left, .hp-landing-hero-img-right {
-webkit-transform: scale(0.7);
transform: scale(0.7);
-webkit-transform-origin: bottom;
transform-origin: bottom;
}
.hp-landing-hero-img-left {
left: 0;
}
.hp-landing-hero-img-right {
right: 0;
}
}
@media screen and (max-width: 767px) {
.hp-landing-hero-rectangle {
width: 126px;
height: 126px;
bottom: 10px;
left: 10px;
}
.hp-landing-hero-circle {
width: 122px;
height: 122px;
right: 10px;
top: -30px;
}
.hp-landing-hero-title {
max-width: 100%;
}
.hp-landing-hero-title p {
font-size: 18px;
}
.hp-landing-hero-img {
max-width: 100%;
height: 42vw;
}
.hp-landing-hero-img-left, .hp-landing-hero-img-right {
-webkit-transform: scale(0.5);
transform: scale(0.5);
bottom: 10px;
}
.hp-landing-hero-img-left .hp-landing-hero-img-emoji:nth-child(1) {
margin-bottom: 0;
}
.hp-landing-hero-img-left .hp-landing-hero-img-emoji:nth-child(3) {
margin-left: 0px;
}
.hp-landing-hero-img-right .hp-landing-hero-img-emoji:nth-child(1) {
margin-bottom: 20px;
margin-left: 40px;
}
.hp-landing-hero-img-right .hp-landing-hero-img-emoji:nth-child(3) {
margin-left: 30px;
}
}
.hp-landing-features-slide {
padding: 0 230px;
}
.hp-landing-features-slide:before, .hp-landing-features-slide:after {
content: "";
position: absolute;
top: 0;
bottom: 0;
width: 180px;
background: -webkit-gradient(linear, right top, left top, from(#ffffff), to(rgba(255, 255, 255, 0)));
background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
z-index: 2;
pointer-events: none;
}
@media screen and (max-width: 767px) {
.hp-landing-features-slide:before, .hp-landing-features-slide:after {
width: 50px;
}
}
.hp-landing-features-slide:before {
left: 0;
right: auto;
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
.hp-landing-features-slide:after {
right: 0;
left: auto;
}
@media screen and (max-width: 1370px) {
.hp-landing-features-slide {
padding: 0 150px;
}
}
@media screen and (max-width: 1199px) {
.hp-landing-features-slide {
padding: 0 80px;
}
}
@media screen and (max-width: 767px) {
.hp-landing-features-slide {
padding: 0 24px;
}
}
.hp-landing-content-1 {
padding-top: 160px;
}
.hp-landing-content-1 .hp-landing-container {
max-width: 75vw;
}
.hp-landing-content-1-circle {
width: 612px;
height: 612px;
border-radius: 100%;
margin-left: auto;
}
.hp-landing-content-1-img {
position: absolute;
right: -152px;
top: 58%;
-webkit-transform: translate(0px, -50%);
transform: translate(0px, -50%);
}
.hp-landing-content-1-img img {
max-width: 880px;
}
@media screen and (max-width: 1450px) {
.hp-landing-content-1 .hp-landing-container {
max-width: 83vw;
}
}
@media screen and (max-width: 1199px) {
.hp-landing-content-1-img img {
max-width: 100%;
}
}
@media screen and (max-width: 991px) {
.hp-landing-content-1 .hp-landing-container {
max-width: 100%;
}
.hp-landing-content-1 .hp-landing-container > .row {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.hp-landing-content-1-circle {
width: 500px;
height: 500px;
}
.hp-landing-content-1-img {
right: -40px;
text-align: right;
}
.hp-landing-content-1-img img {
max-width: 90%;
}
}
@media screen and (max-width: 767px) {
.hp-landing-content-1-circle {
width: 300px;
height: 300px;
}
.hp-landing-content-1 h3 {
font-size: 18px;
line-height: normal;
}
}
.hp-landing-content-2 {
padding-top: 160px;
}
.hp-landing-content-2-circle {
width: 504px;
height: 504px;
border-radius: 100%;
}
.hp-landing-content-2-circle img {
max-width: 770px;
top: 56%;
left: 63%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@media screen and (max-width: 1199px) {
.hp-landing-content-2-circle {
width: 304px;
height: 304px;
margin: 0 auto 200px;
}
.hp-landing-content-2-circle img {
max-width: 600px;
top: 56%;
left: 63%;
}
}
@media screen and (max-width: 767px) {
.hp-landing-content-2-circle {
margin: 0 auto 130px;
}
.hp-landing-content-2-circle img {
max-width: 140%;
left: 55%;
}
}
.hp-landing-content-2-list {
max-width: 360px;
}
@media screen and (max-width: 1199px) {
.hp-landing-content-2 .hp-landing-container > .row {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
}
.hp-landing-people-circle {
width: 542px;
height: 542px;
border-radius: 100%;
position: absolute;
top: 0;
right: 0;
-webkit-transform: translate(50%, -60%);
transform: translate(50%, -60%);
}
@media screen and (max-width: 767px) {
.hp-landing-people-circle {
width: 342px;
height: 342px;
}
}
.hp-landing-people-item {
min-height: 200px;
}
.hp-landing-people-item-twitter {
position: absolute;
top: 16px;
right: 20px;
}
.hp-landing-people-item-img {
margin-left: -10px;
margin-right: 10px;
}
@media screen and (max-width: 991px) {
.hp-landing-people-item-title {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
}
}
.hp-landing-pricing-item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
min-height: 450px;
}
@media screen and (max-width: 767px) {
.hp-landing-pricing-item {
min-height: initial;
}
}
.hp-landing-footer-circle {
width: 255px;
height: 255px;
border-radius: 100%;
position: absolute;
bottom: 0;
left: 0;
-webkit-transform: translate(-50%, 50%);
transform: translate(-50%, 50%);
}
@media screen and (max-width: 767px) {
.hp-landing-footer-circle {
width: 200px;
height: 200px;
}
.hp-landing-footer-copyright {
text-align: center;
}
.hp-landing-footer-copyright > .col {
-webkit-box-flex: 100% !important;
-ms-flex: 100% !important;
flex: 100% !important;
}
.hp-landing-footer-copyright > .col .row {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
}
@@ -0,0 +1,32 @@
/* Lock Screen */
.hp-lock-screen {
position: relative;
min-height: 100vh;
padding: 150px 30px;
}
.hp-lock-screen .hp-screen-bg {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
background-size: cover;
background-position: center;
}
.hp-lock-screen-row {
max-width: 390px;
background: rgba(0, 16, 247, 0.3);
border: 3px solid rgba(255, 255, 255, 0.3);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
}
@media screen and (max-width: 767px) {
.hp-lock-screen-row {
max-width: 100%;
}
}
@media screen and (max-width: 767px) {
.hp-lock-screen {
padding: 64px 24px;
}
}
@@ -0,0 +1,68 @@
/* Pricing */
.hp-pricing-billed-text.active {
color: #0010f7 !important;
}
.hp-pricing-item {
-webkit-box-flex: 0;
-ms-flex: 0 0 19%;
flex: 0 0 19%;
max-width: 210px;
}
.hp-pricing-item-best-button {
width: 100%;
height: auto;
white-space: initial;
line-height: 1.2;
}
.hp-pricing-item-special {
background-color: #0010f7;
border-color: #0010f7 !important;
}
.hp-pricing-item-special .hp-pricing-item-title, .hp-pricing-item-special .hp-pricing-item-price {
color: #ebfafa;
}
.hp-pricing-item-special .hp-pricing-item-subtitle {
color: #00f7bf !important;
}
.hp-pricing-item-special .hp-pricing-item-billed, .hp-pricing-item-special .hp-pricing-item-list {
color: #55b1f3 !important;
}
.hp-pricing-item-special .hp-pricing-item-list svg path {
fill: #ebfafa;
}
.hp-pricing-item-special button.btn {
color: #0010f7 !important;
background-color: #ebfafa !important;
}
.hp-pricing-item-special button.btn:hover {
color: #ffffff !important;
}
@media screen and (max-width: 1199px) {
.hp-pricing-item {
-webkit-box-flex: 0;
-ms-flex: 0 0 40%;
flex: 0 0 40%;
max-width: 40%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-item-align: normal;
align-self: normal;
}
}
@media screen and (max-width: 767px) {
.hp-pricing-item {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
}
+161
View File
@@ -0,0 +1,161 @@
/* Profile */
.hp-profile-menu {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
border-right: 1px solid #dfe6e9;
min-height: 930px;
}
.hp-profile-menu-header .badge {
bottom: -16px;
right: -5px;
top: auto;
padding: 0px 4px;
height: 16px;
line-height: 16px;
z-index: 1;
-webkit-transform: translate(0px, 0px);
transform: translate(0px, 0px);
-webkit-box-shadow: none;
box-shadow: none;
}
.hp-profile-menu-header .avatar-item {
overflow: initial;
}
.hp-profile-menu-header .avatar-item:before {
content: "";
position: absolute;
top: -7px;
left: -7px;
right: -7px;
bottom: -7px;
background: conic-gradient(#0010f7, rgba(255, 255, 255, 0));
border-radius: 100%;
pointer-events: none;
}
.hp-profile-menu-header .avatar-item:after {
content: "";
position: absolute;
top: -3px;
left: -3px;
right: -3px;
bottom: -3px;
background: #ffffff;
border-radius: 100%;
pointer-events: none;
}
.hp-profile-menu-header .avatar-item img {
position: relative;
z-index: 1;
}
.hp-profile-menu-body .active {
background: #ebfafa;
color: #0010f7 !important;
}
.hp-profile-menu-body .active .hp-menu-item-line {
opacity: 1 !important;
}
@media screen and (max-width: 991px) {
.hp-profile-menu {
display: none;
}
}
.hp-profile-content-list ul {
list-style: none;
margin: 0;
padding: 0;
}
.hp-profile-content-list ul li {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.hp-profile-content-list ul li span {
display: block;
}
.hp-profile-content-list ul li span:nth-child(1) {
min-width: 200px;
}
@media screen and (max-width: 767px) {
.hp-profile-content-list ul li {
display: block;
}
.hp-profile-content-list ul li span:nth-child(1) {
min-width: initial;
}
}
.hp-profile-notifications {
max-width: 424px;
}
@media screen and (max-width: 767px) {
.hp-profile-action-btn {
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
.hp-profile-action-btn button {
width: 100%;
margin-top: 24px;
}
}
.hp-profile-connect-btn {
-webkit-box-flex: 0;
-ms-flex: 0 0 360px;
flex: 0 0 360px;
}
.hp-profile-connect-btn svg {
min-width: 14px;
}
@media screen and (max-width: 767px) {
.hp-profile-connect-btn {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
}
}
.hp-profile-mobile-menu-btn {
display: none;
}
@media screen and (max-width: 991px) {
.hp-profile-mobile-menu-btn {
display: block;
}
}
.hp-profile-mobile-menu {
min-width: 256px;
width: auto;
padding: 0;
}
.hp-profile-mobile-menu .hp-profile-menu {
padding: 0 0 35px !important;
display: block;
min-height: initial;
border: none;
}
.hp-profile-mobile-menu .hp-profile-menu .hp-menu-header-btn, .hp-profile-mobile-menu .hp-profile-menu-footer {
display: none;
}
.hp-profile-activity .table-responsive::-webkit-scrollbar {
width: 0;
height: 0;
}
@@ -0,0 +1,8 @@
.hp-select-box-item > input:checked ~ label .card {
border-color: #0010f7 !important;
-webkit-box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
box-shadow: 0px 0px 10px rgba(10, 175, 255, 0.35);
}
.hp-select-box-item ul li {
list-style: disc;
}
@@ -0,0 +1,64 @@
/* Apex Charts */
.apexcharts-canvas {
/* Tooltip Color */
/* Toolbar Download Option Color */
/* Text font family */
}
.apexcharts-canvas .apexcharts-tooltip {
color: #636e72;
}
.apexcharts-canvas .apexcharts-toolbar .apexcharts-menu .apexcharts-menu-item {
color: #636e72;
background-color: #0010f7;
}
.apexcharts-canvas .apexcharts-xaxistooltip-text {
font-family: "Manrope", sans-serif !important;
color: #636e72 !important;
}
.apexcharts-canvas .apexcharts-text,
.apexcharts-canvas .apexcharts-datalabel {
font-family: "Poppins", sans-serif !important;
}
.apexcharts-canvas .apexcharts-tooltip-text {
font-family: "Poppins", sans-serif !important;
}
.apexcharts-canvas .hp-donut-chart .apexcharts-tooltip {
color: #ffffff !important;
}
.hp-chart-text-color .apexcharts-text {
fill: #b2bec3 !important;
}
/* apex charts tooltip */
.apexcharts-xaxistooltip {
color: #ffffff !important;
}
/* Toolbar Z-index */
.apexcharts-toolbar {
z-index: 10;
}
/* Analytics Visiters Chart */
.hp-analytics-visiters-chart {
height: 402px;
}
.hp-analytics-visiters-chart .apexcharts-text {
fill: #b2bec3 !important;
}
#analytics-visiters-chart .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
/* Heatmap Chart */
.hp-heatmap-chart .apexcharts-legend.position-bottom.apexcharts-align-center,
.hp-heatmap-chart .apexcharts-legend.position-top.apexcharts-align-center {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
padding: 0px 50px;
}
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
.hljs{display:block;overflow-x:auto;padding:.5em;background:#eaeef3;color:#00193a}.hljs-doctag,.hljs-keyword,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-strong,.hljs-title{font-weight:700}.hljs-comment{color:#738191}.hljs-addition,.hljs-built_in,.hljs-literal,.hljs-name,.hljs-quote,.hljs-section,.hljs-selector-class,.hljs-selector-id,.hljs-string,.hljs-tag,.hljs-title,.hljs-type{color:#0048ab}.hljs-attribute,.hljs-bullet,.hljs-deletion,.hljs-link,.hljs-meta,.hljs-regexp,.hljs-subst,.hljs-symbol,.hljs-template-variable,.hljs-variable{color:#4c81c9}.hljs-emphasis{font-style:italic}
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,16 @@
// Notification
$(".toast-btn").click(function () {
let btnItem = $(this),
btnId = btnItem.data("id");
$(".toast").each(function () {
let eachItem = $(this),
eachItemId = eachItem.data("id");
if (eachItemId) {
if (btnId === eachItemId) {
new bootstrap.Toast($(this)).show();
}
}
});
});
+191
View File
@@ -0,0 +1,191 @@
// Sider
$(function () {
// Menu Link
$(".hp-sidebar-container li a").each(function () {
if (window.location.pathname.split("/")[window.location.pathname.split("/").length - 1] == $(this).attr("href")) {
$(this).addClass("active")
$(this).parents(".submenu-children").slideDown()
$(this).parents(".submenu-children").addClass("active")
$(this).parents(".submenu-children").prev("a").addClass("active arrow-active")
}
});
// Menu Dropdown
$(".hp-sidebar-container li a").click(function () {
if ($(this).next(".submenu-children").length) {
$(this).toggleClass("arrow-active")
$(this).next(".submenu-children").slideToggle(300)
}
});
// Mobile Button
$(".hp-mobile-sidebar-button").click(function () {
$("body").removeClass("collapsed-active collapse-btn-none")
});
// Collapsed
$(".hp-sidebar .hp-sidebar-collapse-button").click(function () {
$("body").toggleClass("collapsed-active")
$(".hp-sidebar .submenu-children").slideUp()
$(".hp-sidebar li a").removeClass("arrow-active")
$(".hp-sidebar .tooltip-item").toggleClass("in-active")
if ($("body").hasClass("collapsed-active")) {
$(".hp-sidebar .submenu-children").addClass("d-none")
} else {
$(".hp-sidebar .submenu-children").removeClass("d-none")
$(".hp-sidebar .submenu-children").css("display", "none")
}
});
if ($("body").hasClass("collapsed-active")) {
$(".hp-sidebar .submenu-children").addClass("d-none")
$(".hp-sidebar .tooltip-item").removeClass("in-active")
}
// Collapsed Menu Dropdown
let position = "left";
let sidebarWidth;
if ($("html").attr("dir") === "rtl") {
position = "right";
}
$(".hp-sidebar-container li a").mouseenter(function () {
if ($("body").hasClass("collapsed-active")) {
sidebarWidth = parseInt($(this).parents(".hp-sidebar").width()) + 38;
$(".hp-sidebar-dropdown-container").remove();
if ($(this).next(".submenu-children").length) {
$("body").append(
`
<div class="hp-sidebar-dropdown-container position-absolute">
<ul>` +
$(this).next(".submenu-children").html() +
`</ul>
</div>
`
);
if ($(this).offset().top + $(".hp-sidebar-dropdown-container").height() > $(window).height()) {
$(".hp-sidebar-dropdown-container > ul").css({
maxHeight: "calc(100vh - " + ($(window).height() - $(this).offset().top) + "px)",
});
$(".hp-sidebar-dropdown-container").css(
"top", $(this).offset().top - $(".hp-sidebar-dropdown-container").height() + 50 + "px"
);
if (position === "right") {
$(".hp-sidebar-dropdown-container").css(
position, (sidebarWidth - 38) + "px"
);
} else {
$(".hp-sidebar-dropdown-container").css(
position, "calc(" + $(this).offset().left + "px + " + sidebarWidth + "px)"
);
}
} else {
$(".hp-sidebar-dropdown-container > ul").css({
maxHeight: "none",
});
$(".hp-sidebar-dropdown-container").css(
"top", $(this).offset().top + "px"
);
if (position === "right") {
$(".hp-sidebar-dropdown-container").css(
position, (sidebarWidth - 38) + "px"
);
} else {
$(".hp-sidebar-dropdown-container").css(
position, "calc(" + $(this).offset().left + "px + " + sidebarWidth + "px)"
);
}
}
//--
let levelNumber;
$(".hp-sidebar-dropdown-container li a").mouseenter(function () {
if ($(this).next(".submenu-children").length) {
$(this).css("pointer-events", "none");
levelNumber = $(this)
.next(".collapse")
.find(".submenu-children")
.data("level");
$("body").append(
`
<div class="hp-sidebar-dropdown-container position-absolute" data-level="` +
levelNumber +
`">
<ul>` +
$(this).next(".submenu-children").html() +
`</ul>
</div>
`
);
if ($(this).offset().top + $(".hp-sidebar-dropdown-container[data-level=" + levelNumber + "]").height() > $(window).height()) {
$(".hp-sidebar-dropdown-container[data-level=" + levelNumber + "] > ul").css({
maxHeight: "calc(100vh - " + ($(window).height() - $(this).offset().top) + "px)",
});
$(".hp-sidebar-dropdown-container[data-level=" + levelNumber + "]").css(
"top", $(this).offset().top - $(".hp-sidebar-dropdown-container[data-level=" + levelNumber + "]").height() + 50 + "px"
);
if (position === "right") {
$(".hp-sidebar-dropdown-container[data-level=" + levelNumber + "]").css(
position, "calc(" + ($(this).width() + sidebarWidth - 38 + 27) + "px)"
);
} else {
$(".hp-sidebar-dropdown-container[data-level=" + levelNumber + "]").css(
position, "calc(" + $(this).offset().left + "px + " + (sidebarWidth - 37) * parseInt(levelNumber) + "px)"
);
}
} else {
$(".hp-sidebar-dropdown-container[data-level=" + levelNumber + "] > ul").css({
maxHeight: "none",
});
$(".hp-sidebar-dropdown-container[data-level=" + levelNumber + "]").css("top", $(this).offset().top + "px");
if (position === "right") {
$(".hp-sidebar-dropdown-container[data-level=" + levelNumber + "]").css(
position, "calc(" + ($(this).width() + sidebarWidth - 38 + 27) + "px)"
);
} else {
$(".hp-sidebar-dropdown-container[data-level=" + levelNumber + "]").css(
position, "calc(" + $(this).offset().left + "px + " + (sidebarWidth - 37) * parseInt(levelNumber) + "px)"
);
}
}
} else {
$(".hp-sidebar-dropdown-container li a").css("pointer-events", "all");
$(".hp-sidebar-dropdown-container[data-level=" + levelNumber + "]").remove();
}
});
}
} else {
$(".hp-sidebar-dropdown-container").remove();
}
});
$(window).mousemove(function (e) {
let menuItem = $(".hp-sidebar-container li a");
let dropdownContainer = $(".hp-sidebar-dropdown-container");
if (
!menuItem.is(event.target) &&
!menuItem.has(event.target).length &&
!dropdownContainer.is(event.target) &&
!dropdownContainer.has(event.target).length
) {
$(".hp-sidebar-dropdown-container").remove();
$(".hp-sidebar-dropdown-container li a").css("pointer-events", "all");
}
});
})
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
const basicNotification='\n<div class="toast fade show" role="alert" aria-live="assertive" aria-atomic="true" data-bs-autohide="false">\n <div class="toast-header">\n <img class="me-8" src="..." alt="...">\n <strong class="me-auto">Yoda</strong>\n <small>11 mins ago</small>\n <button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>\n </div>\n\n <div class="toast-body">\n Hello, world! This is a toast message.\n </div>\n</div>\n\n',live='\n<button type="button" class="btn btn-primary toast-btn" data-id="liveToast" id="liveToastBtn">Show live toast</button>\n\n<div class="position-fixed bottom-0 end-0 p-16" style="z-index: 99">\n <div data-id="liveToast" class="toast" role="alert" aria-live="assertive" aria-atomic="true">\n <div class="toast-header">\n <img class="me-8" src="..." alt="...">\n <strong class="me-auto">Yoda</strong>\n <small>11 mins ago</small>\n <button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>\n </div>\n\n <div class="toast-body">\n Hello, world! This is a toast message.\n </div>\n </div>\n</div>\n\n',translucent='\n<div class="hp-bg-black-100 hp-bg-dark-0 rounded p-32">\n <div class="toast fade show" role="alert" aria-live="assertive" aria-atomic="true">\n <div class="toast-header">\n <img class="me-8" src="..." alt="...">\n <strong class="me-auto">Yoda</strong>\n <small class="text-muted">11 mins ago</small>\n <button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>\n </div>\n\n <div class="toast-body">\n Hello, world! This is a toast message.\n </div>\n </div>\n</div>\n\n',stacking='\n<button type="button" class="btn btn-primary toast-btn" data-id="stacking-1">Toast 1</button>\n\n<button type="button" class="btn btn-primary toast-btn" data-id="stacking-2">Toast 2</button>\n\n<div class="position-fixed top-0 end-0 p-16" style="z-index: 99">\n <div class="toast-container">\n <div data-id="stacking-1" class="toast fade hide" role="alert" aria-live="assertive" aria-atomic="true">\n <div class="toast-header">\n <img class="me-8" src="..." alt="...">\n <strong class="me-auto">Yoda</strong>\n <small class="text-muted">just now</small>\n <button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>\n </div>\n\n <div class="toast-body">\n See? Just like this.\n </div>\n </div>\n\n <div data-id="stacking-2" class="toast fade hide" role="alert" aria-live="assertive" aria-atomic="true">\n <div class="toast-header">\n <img class="me-8" src="..." alt="...">\n <strong class="me-auto">Yoda</strong>\n <small class="text-muted">2 seconds ago</small>\n <button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>\n </div>\n\n <div class="toast-body">\n Heads up, toasts will stack automatically\n </div>\n </div>\n </div>\n</div>\n\n';$("pre code").each((function(){"notification"===$(this).data("component")&&($(this).text($.trim($(this).data("code"))),"basic"===$(this).data("code")&&$(this).text(basicNotification),"live"===$(this).data("code")&&$(this).text(live),"translucent"===$(this).data("code")&&$(this).text(translucent),"stacking"===$(this).data("code")&&$(this).text(stacking))}));
+1
View File
@@ -0,0 +1 @@
$(".show-code-btn").click((function(){$(this).parent().nextAll(".hljs-container").fadeToggle(300)}));