mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-13 11:41:31 +00:00
Build modified streamline images
The official image from streamline does not currently work for the arm64 platform. As a temporary measure, the source code and docker build scripts have been lifted from the official images and are used to build locally. Some additional modifications are made to reduce overall image size, these are documented in docker/README.md
This commit is contained in:
+7
File diff suppressed because one or more lines are too long
+161
@@ -0,0 +1,161 @@
|
||||
@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,300,600,700);
|
||||
/*Theme Colors*/
|
||||
/*bootstrap Color*/
|
||||
/*Normal Color*/
|
||||
/*Border radius*/
|
||||
/*Preloader*/
|
||||
.preloader {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
position: fixed;
|
||||
z-index: 99999;
|
||||
background: #fff;
|
||||
}
|
||||
.preloader .cssload-speeding-wheel {
|
||||
position: absolute;
|
||||
top: calc(50% - 3.5px);
|
||||
left: calc(50% - 3.5px);
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/2fCJtbhSlhNNa6S2xlh9GyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+02BC, U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200B-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/UGh2YG8gx86rRGiAZYIbVyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/yQWaOD4iNU5NTY0apN-qj_k_vArhqVIZ0nv9q090hN8.woff2) format('woff2');*/
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
||||
}
|
||||
/*Just change your choise color here its theme Colors*/
|
||||
body {
|
||||
background: #4F5467;
|
||||
}
|
||||
/*Top Header Part*/
|
||||
.top-left-part {
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.logo i {
|
||||
color: #ffffff;
|
||||
}
|
||||
.navbar-header {
|
||||
background: #03a9f3;
|
||||
}
|
||||
.navbar-top-links > li > a {
|
||||
color: #ffffff;
|
||||
}
|
||||
/*Right panel*/
|
||||
.right-sidebar .rpanel-title {
|
||||
background: #03a9f3;
|
||||
}
|
||||
/*Bread Crumb*/
|
||||
.bg-title .breadcrumb .active {
|
||||
color: #03a9f3;
|
||||
}
|
||||
/*Sidebar*/
|
||||
.sidebar {
|
||||
background: #4F5467;
|
||||
box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
.sidebar .label-custom {
|
||||
background: #01c0c8;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #a6acbc;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #a6acbc;
|
||||
border-left: 0px solid #4F5467;
|
||||
}
|
||||
#side-menu > li > a:hover,
|
||||
#side-menu > li > a:focus {
|
||||
background: rgba(0, 0, 0, 0.07);
|
||||
}
|
||||
#side-menu > li > a.active {
|
||||
border-left: 3px solid #03a9f3;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
}
|
||||
#side-menu > li > a.active i {
|
||||
color: #03a9f3;
|
||||
}
|
||||
#side-menu ul > li > a:hover {
|
||||
color: #03a9f3;
|
||||
}
|
||||
#side-menu ul > li > a.active {
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
}
|
||||
.sidebar #side-menu .user-pro .nav-second-level a:hover {
|
||||
color: #03a9f3;
|
||||
}
|
||||
.content-wrapper .sidebar .nav-second-level li {
|
||||
background: #444859;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.content-wrapper #side-menu ul,
|
||||
.content-wrapper .sidebar #side-menu > li:hover,
|
||||
.content-wrapper .sidebar .nav-second-level > li > a {
|
||||
background: #444859;
|
||||
}
|
||||
}
|
||||
.fix-sidebar .top-left-part {
|
||||
background: #03a9f3;
|
||||
}
|
||||
/*themecolor*/
|
||||
.bg-theme {
|
||||
background-color: #fb9678 !important;
|
||||
}
|
||||
.bg-theme-dark {
|
||||
background-color: #01c0c8 !important;
|
||||
}
|
||||
/*Chat widget*/
|
||||
.chat-list .odd .chat-text {
|
||||
background: #03a9f3;
|
||||
}
|
||||
/*Button*/
|
||||
.btn-custom {
|
||||
background: #03a9f3;
|
||||
border: 1px solid #03a9f3;
|
||||
color: #ffffff;
|
||||
}
|
||||
.btn-custom:hover {
|
||||
background: #03a9f3;
|
||||
opacity: 0.8;
|
||||
color: #ffffff;
|
||||
border: 1px solid #03a9f3;
|
||||
}
|
||||
/*Custom tab*/
|
||||
.customtab li.active a,
|
||||
.customtab li.active a:hover,
|
||||
.customtab li.active a:focus {
|
||||
border-bottom: 2px solid #03a9f3;
|
||||
color: #03a9f3;
|
||||
}
|
||||
.tabs-vertical li.active a,
|
||||
.tabs-vertical li.active a:hover,
|
||||
.tabs-vertical li.active a:focus {
|
||||
background: #03a9f3;
|
||||
border-right: 2px solid #03a9f3;
|
||||
}
|
||||
/*Nav-pills*/
|
||||
.nav-pills > li.active > a,
|
||||
.nav-pills > li.active > a:focus,
|
||||
.nav-pills > li.active > a:hover {
|
||||
background: #03a9f3;
|
||||
color: #ffffff;
|
||||
}
|
||||
+151
@@ -0,0 +1,151 @@
|
||||
@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,300,600,700);
|
||||
/*Theme Colors*/
|
||||
/*bootstrap Color*/
|
||||
/*Normal Color*/
|
||||
/*Border radius*/
|
||||
/*Preloader*/
|
||||
.preloader {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
position: fixed;
|
||||
z-index: 99999;
|
||||
background: #fff;
|
||||
}
|
||||
.preloader .cssload-speeding-wheel {
|
||||
position: absolute;
|
||||
top: calc(50% - 3.5px);
|
||||
left: calc(50% - 3.5px);
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/2fCJtbhSlhNNa6S2xlh9GyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+02BC, U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200B-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/UGh2YG8gx86rRGiAZYIbVyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/yQWaOD4iNU5NTY0apN-qj_k_vArhqVIZ0nv9q090hN8.woff2) format('woff2');*/
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
||||
}
|
||||
/*Just change your choise color here its theme Colors*/
|
||||
body {
|
||||
background: #fff;
|
||||
}
|
||||
/*Top Header Part*/
|
||||
.top-left-part {
|
||||
background: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
.logo i {
|
||||
color: #ffffff;
|
||||
}
|
||||
.navbar-header {
|
||||
background: #03a9f3;
|
||||
}
|
||||
.navbar-top-links > li > a {
|
||||
color: #ffffff;
|
||||
}
|
||||
/*Right panel*/
|
||||
.right-sidebar .rpanel-title {
|
||||
background: #03a9f3;
|
||||
}
|
||||
/*Bread Crumb*/
|
||||
.bg-title .breadcrumb .active {
|
||||
color: #03a9f3;
|
||||
}
|
||||
/*Sidebar*/
|
||||
.sidebar {
|
||||
background: #fff;
|
||||
box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
.sidebar .label-custom {
|
||||
background: #01c0c8;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #54667a;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #54667a;
|
||||
border-left: 0px solid #fff;
|
||||
}
|
||||
#side-menu > li > a:hover,
|
||||
#side-menu > li > a:focus {
|
||||
background: rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
#side-menu > li > a.active {
|
||||
border-left: 3px solid #03a9f3;
|
||||
color: #2b2b2b;
|
||||
font-weight: 500;
|
||||
}
|
||||
#side-menu > li > a.active i {
|
||||
color: #03a9f3;
|
||||
}
|
||||
#side-menu ul > li > a:hover {
|
||||
color: #03a9f3;
|
||||
}
|
||||
#side-menu ul > li > a.active {
|
||||
color: #2b2b2b;
|
||||
font-weight: 500;
|
||||
}
|
||||
.sidebar #side-menu .user-pro .nav-second-level a:hover {
|
||||
color: #03a9f3;
|
||||
}
|
||||
.fix-sidebar .top-left-part {
|
||||
background: #03a9f3;
|
||||
}
|
||||
/*themecolor*/
|
||||
.bg-theme {
|
||||
background-color: #fb9678 !important;
|
||||
}
|
||||
.bg-theme-dark {
|
||||
background-color: #01c0c8 !important;
|
||||
}
|
||||
/*Chat widget*/
|
||||
.chat-list .odd .chat-text {
|
||||
background: #03a9f3;
|
||||
}
|
||||
/*Button*/
|
||||
.btn-custom {
|
||||
background: #03a9f3;
|
||||
border: 1px solid #03a9f3;
|
||||
color: #ffffff;
|
||||
}
|
||||
.btn-custom:hover {
|
||||
background: #03a9f3;
|
||||
opacity: 0.8;
|
||||
color: #ffffff;
|
||||
border: 1px solid #03a9f3;
|
||||
}
|
||||
/*Custom tab*/
|
||||
.customtab li.active a,
|
||||
.customtab li.active a:hover,
|
||||
.customtab li.active a:focus {
|
||||
border-bottom: 2px solid #03a9f3;
|
||||
color: #03a9f3;
|
||||
}
|
||||
.tabs-vertical li.active a,
|
||||
.tabs-vertical li.active a:hover,
|
||||
.tabs-vertical li.active a:focus {
|
||||
background: #03a9f3;
|
||||
border-right: 2px solid #03a9f3;
|
||||
}
|
||||
/*Nav-pills*/
|
||||
.nav-pills > li.active > a,
|
||||
.nav-pills > li.active > a:focus,
|
||||
.nav-pills > li.active > a:hover {
|
||||
background: #03a9f3;
|
||||
color: #ffffff;
|
||||
}
|
||||
@@ -0,0 +1,161 @@
|
||||
@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,300,600,700);
|
||||
/*Theme Colors*/
|
||||
/*bootstrap Color*/
|
||||
/*Normal Color*/
|
||||
/*Border radius*/
|
||||
/*Preloader*/
|
||||
.preloader {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
position: fixed;
|
||||
z-index: 99999;
|
||||
background: #fff;
|
||||
}
|
||||
.preloader .cssload-speeding-wheel {
|
||||
position: absolute;
|
||||
top: calc(50% - 3.5px);
|
||||
left: calc(50% - 3.5px);
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/2fCJtbhSlhNNa6S2xlh9GyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+02BC, U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200B-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/UGh2YG8gx86rRGiAZYIbVyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/yQWaOD4iNU5NTY0apN-qj_k_vArhqVIZ0nv9q090hN8.woff2) format('woff2');*/
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
||||
}
|
||||
/*Just change your choise color here its theme Colors*/
|
||||
body {
|
||||
background: #4F5467;
|
||||
}
|
||||
/*Top Header Part*/
|
||||
.top-left-part {
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
.logo i {
|
||||
color: #ffffff;
|
||||
}
|
||||
.navbar-header {
|
||||
background: #4F5467;
|
||||
}
|
||||
.navbar-top-links > li > a {
|
||||
color: #ffffff;
|
||||
}
|
||||
/*Right panel*/
|
||||
.right-sidebar .rpanel-title {
|
||||
background: #fb9678;
|
||||
}
|
||||
/*Bread Crumb*/
|
||||
.bg-title .breadcrumb .active {
|
||||
color: #fb9678;
|
||||
}
|
||||
/*Sidebar*/
|
||||
.sidebar {
|
||||
background: #4F5467;
|
||||
box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
.sidebar .label-custom {
|
||||
background: #01c0c8;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #a6acbc;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #a6acbc;
|
||||
border-left: 0px solid #4F5467;
|
||||
}
|
||||
#side-menu > li > a:hover,
|
||||
#side-menu > li > a:focus {
|
||||
background: rgba(0, 0, 0, 0.07);
|
||||
}
|
||||
#side-menu > li > a.active {
|
||||
border-left: 3px solid #fb9678;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
}
|
||||
#side-menu > li > a.active i {
|
||||
color: #fb9678;
|
||||
}
|
||||
#side-menu ul > li > a:hover {
|
||||
color: #fb9678;
|
||||
}
|
||||
#side-menu ul > li > a.active {
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
}
|
||||
.sidebar #side-menu .user-pro .nav-second-level a:hover {
|
||||
color: #fb9678;
|
||||
}
|
||||
.content-wrapper .sidebar .nav-second-level li {
|
||||
background: #444859;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.content-wrapper #side-menu ul,
|
||||
.content-wrapper .sidebar #side-menu > li:hover,
|
||||
.content-wrapper .sidebar .nav-second-level > li > a {
|
||||
background: #444859;
|
||||
}
|
||||
}
|
||||
.fix-sidebar .top-left-part {
|
||||
background: #fb9678;
|
||||
}
|
||||
/*themecolor*/
|
||||
.bg-theme {
|
||||
background-color: #fb9678 !important;
|
||||
}
|
||||
.bg-theme-dark {
|
||||
background-color: #01c0c8 !important;
|
||||
}
|
||||
/*Chat widget*/
|
||||
.chat-list .odd .chat-text {
|
||||
background: #fb9678;
|
||||
}
|
||||
/*Button*/
|
||||
.btn-custom {
|
||||
background: #fb9678;
|
||||
border: 1px solid #fb9678;
|
||||
color: #ffffff;
|
||||
}
|
||||
.btn-custom:hover {
|
||||
background: #fb9678;
|
||||
opacity: 0.8;
|
||||
color: #ffffff;
|
||||
border: 1px solid #fb9678;
|
||||
}
|
||||
/*Custom tab*/
|
||||
.customtab li.active a,
|
||||
.customtab li.active a:hover,
|
||||
.customtab li.active a:focus {
|
||||
border-bottom: 2px solid #fb9678;
|
||||
color: #fb9678;
|
||||
}
|
||||
.tabs-vertical li.active a,
|
||||
.tabs-vertical li.active a:hover,
|
||||
.tabs-vertical li.active a:focus {
|
||||
background: #fb9678;
|
||||
border-right: 2px solid #fb9678;
|
||||
}
|
||||
/*Nav-pills*/
|
||||
.nav-pills > li.active > a,
|
||||
.nav-pills > li.active > a:focus,
|
||||
.nav-pills > li.active > a:hover {
|
||||
background: #fb9678;
|
||||
color: #ffffff;
|
||||
}
|
||||
+151
@@ -0,0 +1,151 @@
|
||||
@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,300,600,700);
|
||||
/*Theme Colors*/
|
||||
/*bootstrap Color*/
|
||||
/*Normal Color*/
|
||||
/*Border radius*/
|
||||
/*Preloader*/
|
||||
.preloader {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
position: fixed;
|
||||
z-index: 99999;
|
||||
background: #fff;
|
||||
}
|
||||
.preloader .cssload-speeding-wheel {
|
||||
position: absolute;
|
||||
top: calc(50% - 3.5px);
|
||||
left: calc(50% - 3.5px);
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/2fCJtbhSlhNNa6S2xlh9GyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+02BC, U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200B-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/UGh2YG8gx86rRGiAZYIbVyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/yQWaOD4iNU5NTY0apN-qj_k_vArhqVIZ0nv9q090hN8.woff2) format('woff2');*/
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
||||
}
|
||||
/*Just change your choise color here its theme Colors*/
|
||||
body {
|
||||
background: #fff;
|
||||
}
|
||||
/*Top Header Part*/
|
||||
.top-left-part {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
.logo i {
|
||||
color: #ffffff;
|
||||
}
|
||||
.navbar-header {
|
||||
background: #4F5467;
|
||||
}
|
||||
.navbar-top-links > li > a {
|
||||
color: #ffffff;
|
||||
}
|
||||
/*Right panel*/
|
||||
.right-sidebar .rpanel-title {
|
||||
background: #fb9678;
|
||||
}
|
||||
/*Bread Crumb*/
|
||||
.bg-title .breadcrumb .active {
|
||||
color: #fb9678;
|
||||
}
|
||||
/*Sidebar*/
|
||||
.sidebar {
|
||||
background: #fff;
|
||||
box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
.sidebar .label-custom {
|
||||
background: #01c0c8;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #54667a;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #54667a;
|
||||
border-left: 0px solid #fff;
|
||||
}
|
||||
#side-menu > li > a:hover,
|
||||
#side-menu > li > a:focus {
|
||||
background: rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
#side-menu > li > a.active {
|
||||
border-left: 3px solid #fb9678;
|
||||
color: #2b2b2b;
|
||||
font-weight: 500;
|
||||
}
|
||||
#side-menu > li > a.active i {
|
||||
color: #fb9678;
|
||||
}
|
||||
#side-menu ul > li > a:hover {
|
||||
color: #fb9678;
|
||||
}
|
||||
#side-menu ul > li > a.active {
|
||||
color: #2b2b2b;
|
||||
font-weight: 500;
|
||||
}
|
||||
.sidebar #side-menu .user-pro .nav-second-level a:hover {
|
||||
color: #fb9678;
|
||||
}
|
||||
.fix-sidebar .top-left-part {
|
||||
background: #4F5467;
|
||||
}
|
||||
/*themecolor*/
|
||||
.bg-theme {
|
||||
background-color: #fb9678 !important;
|
||||
}
|
||||
.bg-theme-dark {
|
||||
background-color: #01c0c8 !important;
|
||||
}
|
||||
/*Chat widget*/
|
||||
.chat-list .odd .chat-text {
|
||||
background: #fb9678;
|
||||
}
|
||||
/*Button*/
|
||||
.btn-custom {
|
||||
background: #fb9678;
|
||||
border: 1px solid #fb9678;
|
||||
color: #ffffff;
|
||||
}
|
||||
.btn-custom:hover {
|
||||
background: #fb9678;
|
||||
opacity: 0.8;
|
||||
color: #ffffff;
|
||||
border: 1px solid #fb9678;
|
||||
}
|
||||
/*Custom tab*/
|
||||
.customtab li.active a,
|
||||
.customtab li.active a:hover,
|
||||
.customtab li.active a:focus {
|
||||
border-bottom: 2px solid #fb9678;
|
||||
color: #fb9678;
|
||||
}
|
||||
.tabs-vertical li.active a,
|
||||
.tabs-vertical li.active a:hover,
|
||||
.tabs-vertical li.active a:focus {
|
||||
background: #fb9678;
|
||||
border-right: 2px solid #fb9678;
|
||||
}
|
||||
/*Nav-pills*/
|
||||
.nav-pills > li.active > a,
|
||||
.nav-pills > li.active > a:focus,
|
||||
.nav-pills > li.active > a:hover {
|
||||
background: #fb9678;
|
||||
color: #ffffff;
|
||||
}
|
||||
+161
@@ -0,0 +1,161 @@
|
||||
@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,300,600,700);
|
||||
/*Theme Colors*/
|
||||
/*bootstrap Color*/
|
||||
/*Normal Color*/
|
||||
/*Border radius*/
|
||||
/*Preloader*/
|
||||
.preloader {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
position: fixed;
|
||||
z-index: 99999;
|
||||
background: #fff;
|
||||
}
|
||||
.preloader .cssload-speeding-wheel {
|
||||
position: absolute;
|
||||
top: calc(50% - 3.5px);
|
||||
left: calc(50% - 3.5px);
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/2fCJtbhSlhNNa6S2xlh9GyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+02BC, U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200B-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/UGh2YG8gx86rRGiAZYIbVyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/yQWaOD4iNU5NTY0apN-qj_k_vArhqVIZ0nv9q090hN8.woff2) format('woff2');*/
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
||||
}
|
||||
/*Just change your choise color here its theme Colors*/
|
||||
body {
|
||||
background: #4F5467;
|
||||
}
|
||||
/*Top Header Part*/
|
||||
.top-left-part {
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.logo i {
|
||||
color: #ffffff;
|
||||
}
|
||||
.navbar-header {
|
||||
background: #a0aec4;
|
||||
}
|
||||
.navbar-top-links > li > a {
|
||||
color: #ffffff;
|
||||
}
|
||||
/*Right panel*/
|
||||
.right-sidebar .rpanel-title {
|
||||
background: #a0aec4;
|
||||
}
|
||||
/*Bread Crumb*/
|
||||
.bg-title .breadcrumb .active {
|
||||
color: #a0aec4;
|
||||
}
|
||||
/*Sidebar*/
|
||||
.sidebar {
|
||||
background: #4F5467;
|
||||
box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
.sidebar .label-custom {
|
||||
background: #01c0c8;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #a6acbc;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #a6acbc;
|
||||
border-left: 0px solid #4F5467;
|
||||
}
|
||||
#side-menu > li > a:hover,
|
||||
#side-menu > li > a:focus {
|
||||
background: rgba(0, 0, 0, 0.07);
|
||||
}
|
||||
#side-menu > li > a.active {
|
||||
border-left: 3px solid #a0aec4;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
}
|
||||
#side-menu > li > a.active i {
|
||||
color: #a0aec4;
|
||||
}
|
||||
#side-menu ul > li > a:hover {
|
||||
color: #a0aec4;
|
||||
}
|
||||
#side-menu ul > li > a.active {
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
}
|
||||
.sidebar #side-menu .user-pro .nav-second-level a:hover {
|
||||
color: #a0aec4;
|
||||
}
|
||||
.content-wrapper .sidebar .nav-second-level li {
|
||||
background: #444859;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.content-wrapper #side-menu ul,
|
||||
.content-wrapper .sidebar #side-menu > li:hover,
|
||||
.content-wrapper .sidebar .nav-second-level > li > a {
|
||||
background: #444859;
|
||||
}
|
||||
}
|
||||
.fix-sidebar .top-left-part {
|
||||
background: #a0aec4;
|
||||
}
|
||||
/*themecolor*/
|
||||
.bg-theme {
|
||||
background-color: #fb9678 !important;
|
||||
}
|
||||
.bg-theme-dark {
|
||||
background-color: #01c0c8 !important;
|
||||
}
|
||||
/*Chat widget*/
|
||||
.chat-list .odd .chat-text {
|
||||
background: #a0aec4;
|
||||
}
|
||||
/*Button*/
|
||||
.btn-custom {
|
||||
background: #a0aec4;
|
||||
border: 1px solid #a0aec4;
|
||||
color: #ffffff;
|
||||
}
|
||||
.btn-custom:hover {
|
||||
background: #a0aec4;
|
||||
opacity: 0.8;
|
||||
color: #ffffff;
|
||||
border: 1px solid #a0aec4;
|
||||
}
|
||||
/*Custom tab*/
|
||||
.customtab li.active a,
|
||||
.customtab li.active a:hover,
|
||||
.customtab li.active a:focus {
|
||||
border-bottom: 2px solid #a0aec4;
|
||||
color: #a0aec4;
|
||||
}
|
||||
.tabs-vertical li.active a,
|
||||
.tabs-vertical li.active a:hover,
|
||||
.tabs-vertical li.active a:focus {
|
||||
background: #a0aec4;
|
||||
border-right: 2px solid #a0aec4;
|
||||
}
|
||||
/*Nav-pills*/
|
||||
.nav-pills > li.active > a,
|
||||
.nav-pills > li.active > a:focus,
|
||||
.nav-pills > li.active > a:hover {
|
||||
background: #a0aec4;
|
||||
color: #ffffff;
|
||||
}
|
||||
+151
@@ -0,0 +1,151 @@
|
||||
@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,300,600,700);
|
||||
/*Theme Colors*/
|
||||
/*bootstrap Color*/
|
||||
/*Normal Color*/
|
||||
/*Border radius*/
|
||||
/*Preloader*/
|
||||
.preloader {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
position: fixed;
|
||||
z-index: 99999;
|
||||
background: #fff;
|
||||
}
|
||||
.preloader .cssload-speeding-wheel {
|
||||
position: absolute;
|
||||
top: calc(50% - 3.5px);
|
||||
left: calc(50% - 3.5px);
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/2fCJtbhSlhNNa6S2xlh9GyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+02BC, U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200B-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/UGh2YG8gx86rRGiAZYIbVyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/yQWaOD4iNU5NTY0apN-qj_k_vArhqVIZ0nv9q090hN8.woff2) format('woff2');*/
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
||||
}
|
||||
/*Just change your choise color here its theme Colors*/
|
||||
body {
|
||||
background: #fff;
|
||||
}
|
||||
/*Top Header Part*/
|
||||
.top-left-part {
|
||||
background: rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
.logo i {
|
||||
color: #ffffff;
|
||||
}
|
||||
.navbar-header {
|
||||
background: #a0aec4;
|
||||
}
|
||||
.navbar-top-links > li > a {
|
||||
color: #ffffff;
|
||||
}
|
||||
/*Right panel*/
|
||||
.right-sidebar .rpanel-title {
|
||||
background: #a0aec4;
|
||||
}
|
||||
/*Bread Crumb*/
|
||||
.bg-title .breadcrumb .active {
|
||||
color: #a0aec4;
|
||||
}
|
||||
/*Sidebar*/
|
||||
.sidebar {
|
||||
background: #fff;
|
||||
box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
.sidebar .label-custom {
|
||||
background: #01c0c8;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #54667a;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #54667a;
|
||||
border-left: 0px solid #fff;
|
||||
}
|
||||
#side-menu > li > a:hover,
|
||||
#side-menu > li > a:focus {
|
||||
background: rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
#side-menu > li > a.active {
|
||||
border-left: 3px solid #a0aec4;
|
||||
color: #2b2b2b;
|
||||
font-weight: 500;
|
||||
}
|
||||
#side-menu > li > a.active i {
|
||||
color: #a0aec4;
|
||||
}
|
||||
#side-menu ul > li > a:hover {
|
||||
color: #a0aec4;
|
||||
}
|
||||
#side-menu ul > li > a.active {
|
||||
color: #2b2b2b;
|
||||
font-weight: 500;
|
||||
}
|
||||
.sidebar #side-menu .user-pro .nav-second-level a:hover {
|
||||
color: #a0aec4;
|
||||
}
|
||||
.fix-sidebar .top-left-part {
|
||||
background: #a0aec4;
|
||||
}
|
||||
/*themecolor*/
|
||||
.bg-theme {
|
||||
background-color: #fb9678 !important;
|
||||
}
|
||||
.bg-theme-dark {
|
||||
background-color: #01c0c8 !important;
|
||||
}
|
||||
/*Chat widget*/
|
||||
.chat-list .odd .chat-text {
|
||||
background: #a0aec4;
|
||||
}
|
||||
/*Button*/
|
||||
.btn-custom {
|
||||
background: #a0aec4;
|
||||
border: 1px solid #a0aec4;
|
||||
color: #ffffff;
|
||||
}
|
||||
.btn-custom:hover {
|
||||
background: #a0aec4;
|
||||
opacity: 0.8;
|
||||
color: #ffffff;
|
||||
border: 1px solid #a0aec4;
|
||||
}
|
||||
/*Custom tab*/
|
||||
.customtab li.active a,
|
||||
.customtab li.active a:hover,
|
||||
.customtab li.active a:focus {
|
||||
border-bottom: 2px solid #a0aec4;
|
||||
color: #a0aec4;
|
||||
}
|
||||
.tabs-vertical li.active a,
|
||||
.tabs-vertical li.active a:hover,
|
||||
.tabs-vertical li.active a:focus {
|
||||
background: #a0aec4;
|
||||
border-right: 2px solid #a0aec4;
|
||||
}
|
||||
/*Nav-pills*/
|
||||
.nav-pills > li.active > a,
|
||||
.nav-pills > li.active > a:focus,
|
||||
.nav-pills > li.active > a:hover {
|
||||
background: #a0aec4;
|
||||
color: #ffffff;
|
||||
}
|
||||
@@ -0,0 +1,164 @@
|
||||
/*@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,300,600,700);*/
|
||||
@import "../poppins_font.css";
|
||||
/*Theme Colors*/
|
||||
/*bootstrap Color*/
|
||||
/*Normal Color*/
|
||||
/*Border radius*/
|
||||
/*Preloader*/
|
||||
.preloader {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
position: fixed;
|
||||
z-index: 99999;
|
||||
background: #fff;
|
||||
}
|
||||
.preloader .cssload-speeding-wheel {
|
||||
position: absolute;
|
||||
top: calc(50% - 3.5px);
|
||||
left: calc(50% - 3.5px);
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/2fCJtbhSlhNNa6S2xlh9GyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+02BC, U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200B-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/UGh2YG8gx86rRGiAZYIbVyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/yQWaOD4iNU5NTY0apN-qj_k_vArhqVIZ0nv9q090hN8.woff2) format('woff2');*/
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
||||
}
|
||||
/*Just change your choise color here its theme Colors*/
|
||||
body {
|
||||
background: #4F5467;
|
||||
}
|
||||
/*Top Header Part*/
|
||||
.top-left-part {
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.logo i {
|
||||
color: #ffffff;
|
||||
}
|
||||
.navbar-header {
|
||||
/*background: #00c292; Davis*/
|
||||
background: #059672;
|
||||
}
|
||||
.navbar-top-links > li > a {
|
||||
color: #ffffff;
|
||||
}
|
||||
/*Right panel*/
|
||||
.right-sidebar .rpanel-title {
|
||||
background: #00c292;
|
||||
}
|
||||
/*Bread Crumb*/
|
||||
.bg-title .breadcrumb .active {
|
||||
color: #00c292;
|
||||
}
|
||||
/*Sidebar*/
|
||||
.sidebar {
|
||||
/*background: #4F5467; Davis*/
|
||||
background: #434448;
|
||||
box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
.sidebar .label-custom {
|
||||
background: #01c0c8;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #a6acbc;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #a6acbc;
|
||||
border-left: 0px solid #4F5467;
|
||||
}
|
||||
#side-menu > li > a:hover,
|
||||
#side-menu > li > a:focus {
|
||||
background: rgba(0, 0, 0, 0.07);
|
||||
}
|
||||
#side-menu > li > a.active {
|
||||
border-left: 3px solid #00c292;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
}
|
||||
#side-menu > li > a.active i {
|
||||
color: #00c292;
|
||||
}
|
||||
#side-menu ul > li > a:hover {
|
||||
color: #00c292;
|
||||
}
|
||||
#side-menu ul > li > a.active {
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
}
|
||||
.sidebar #side-menu .user-pro .nav-second-level a:hover {
|
||||
color: #00c292;
|
||||
}
|
||||
.content-wrapper .sidebar .nav-second-level li {
|
||||
background: #444859;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.content-wrapper #side-menu ul,
|
||||
.content-wrapper .sidebar #side-menu > li:hover,
|
||||
.content-wrapper .sidebar .nav-second-level > li > a {
|
||||
background: #444859;
|
||||
}
|
||||
}
|
||||
.fix-sidebar .top-left-part {
|
||||
background: #00c292;
|
||||
}
|
||||
/*themecolor*/
|
||||
.bg-theme {
|
||||
background-color: #fb9678 !important;
|
||||
}
|
||||
.bg-theme-dark {
|
||||
background-color: #01c0c8 !important;
|
||||
}
|
||||
/*Chat widget*/
|
||||
.chat-list .odd .chat-text {
|
||||
background: #00c292;
|
||||
}
|
||||
/*Button*/
|
||||
.btn-custom {
|
||||
background: #00c292;
|
||||
border: 1px solid #00c292;
|
||||
color: #ffffff;
|
||||
}
|
||||
.btn-custom:hover {
|
||||
background: #00c292;
|
||||
opacity: 0.8;
|
||||
color: #ffffff;
|
||||
border: 1px solid #00c292;
|
||||
}
|
||||
/*Custom tab*/
|
||||
.customtab li.active a,
|
||||
.customtab li.active a:hover,
|
||||
.customtab li.active a:focus {
|
||||
border-bottom: 2px solid #00c292;
|
||||
color: #00c292;
|
||||
}
|
||||
.tabs-vertical li.active a,
|
||||
.tabs-vertical li.active a:hover,
|
||||
.tabs-vertical li.active a:focus {
|
||||
background: #00c292;
|
||||
border-right: 2px solid #00c292;
|
||||
}
|
||||
/*Nav-pills*/
|
||||
.nav-pills > li.active > a,
|
||||
.nav-pills > li.active > a:focus,
|
||||
.nav-pills > li.active > a:hover {
|
||||
background: #00c292;
|
||||
color: #ffffff;
|
||||
}
|
||||
+151
@@ -0,0 +1,151 @@
|
||||
@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,300,600,700);
|
||||
/*Theme Colors*/
|
||||
/*bootstrap Color*/
|
||||
/*Normal Color*/
|
||||
/*Border radius*/
|
||||
/*Preloader*/
|
||||
.preloader {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
position: fixed;
|
||||
z-index: 99999;
|
||||
background: #fff;
|
||||
}
|
||||
.preloader .cssload-speeding-wheel {
|
||||
position: absolute;
|
||||
top: calc(50% - 3.5px);
|
||||
left: calc(50% - 3.5px);
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/2fCJtbhSlhNNa6S2xlh9GyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+02BC, U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200B-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/UGh2YG8gx86rRGiAZYIbVyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/yQWaOD4iNU5NTY0apN-qj_k_vArhqVIZ0nv9q090hN8.woff2) format('woff2');*/
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
||||
}
|
||||
/*Just change your choise color here its theme Colors*/
|
||||
body {
|
||||
background: #fff;
|
||||
}
|
||||
/*Top Header Part*/
|
||||
.top-left-part {
|
||||
background: rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
.logo i {
|
||||
color: #ffffff;
|
||||
}
|
||||
.navbar-header {
|
||||
background: #00c292;
|
||||
}
|
||||
.navbar-top-links > li > a {
|
||||
color: #ffffff;
|
||||
}
|
||||
/*Right panel*/
|
||||
.right-sidebar .rpanel-title {
|
||||
background: #00c292;
|
||||
}
|
||||
/*Bread Crumb*/
|
||||
.bg-title .breadcrumb .active {
|
||||
color: #00c292;
|
||||
}
|
||||
/*Sidebar*/
|
||||
.sidebar {
|
||||
background: #fff;
|
||||
box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
.sidebar .label-custom {
|
||||
background: #01c0c8;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #54667a;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #54667a;
|
||||
border-left: 0px solid #fff;
|
||||
}
|
||||
#side-menu > li > a:hover,
|
||||
#side-menu > li > a:focus {
|
||||
background: rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
#side-menu > li > a.active {
|
||||
border-left: 3px solid #00c292;
|
||||
color: #2b2b2b;
|
||||
font-weight: 500;
|
||||
}
|
||||
#side-menu > li > a.active i {
|
||||
color: #00c292;
|
||||
}
|
||||
#side-menu ul > li > a:hover {
|
||||
color: #00c292;
|
||||
}
|
||||
#side-menu ul > li > a.active {
|
||||
color: #2b2b2b;
|
||||
font-weight: 500;
|
||||
}
|
||||
.sidebar #side-menu .user-pro .nav-second-level a:hover {
|
||||
color: #00c292;
|
||||
}
|
||||
.fix-sidebar .top-left-part {
|
||||
background: #00c292;
|
||||
}
|
||||
/*themecolor*/
|
||||
.bg-theme {
|
||||
background-color: #fb9678 !important;
|
||||
}
|
||||
.bg-theme-dark {
|
||||
background-color: #01c0c8 !important;
|
||||
}
|
||||
/*Chat widget*/
|
||||
.chat-list .odd .chat-text {
|
||||
background: #00c292;
|
||||
}
|
||||
/*Button*/
|
||||
.btn-custom {
|
||||
background: #00c292;
|
||||
border: 1px solid #00c292;
|
||||
color: #ffffff;
|
||||
}
|
||||
.btn-custom:hover {
|
||||
background: #00c292;
|
||||
opacity: 0.8;
|
||||
color: #ffffff;
|
||||
border: 1px solid #00c292;
|
||||
}
|
||||
/*Custom tab*/
|
||||
.customtab li.active a,
|
||||
.customtab li.active a:hover,
|
||||
.customtab li.active a:focus {
|
||||
border-bottom: 2px solid #00c292;
|
||||
color: #00c292;
|
||||
}
|
||||
.tabs-vertical li.active a,
|
||||
.tabs-vertical li.active a:hover,
|
||||
.tabs-vertical li.active a:focus {
|
||||
background: #00c292;
|
||||
border-right: 2px solid #00c292;
|
||||
}
|
||||
/*Nav-pills*/
|
||||
.nav-pills > li.active > a,
|
||||
.nav-pills > li.active > a:focus,
|
||||
.nav-pills > li.active > a:hover {
|
||||
background: #00c292;
|
||||
color: #ffffff;
|
||||
}
|
||||
@@ -0,0 +1,161 @@
|
||||
@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,300,600,700);
|
||||
/*Theme Colors*/
|
||||
/*bootstrap Color*/
|
||||
/*Normal Color*/
|
||||
/*Border radius*/
|
||||
/*Preloader*/
|
||||
.preloader {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
position: fixed;
|
||||
z-index: 99999;
|
||||
background: #fff;
|
||||
}
|
||||
.preloader .cssload-speeding-wheel {
|
||||
position: absolute;
|
||||
top: calc(50% - 3.5px);
|
||||
left: calc(50% - 3.5px);
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/2fCJtbhSlhNNa6S2xlh9GyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+02BC, U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200B-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/UGh2YG8gx86rRGiAZYIbVyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/yQWaOD4iNU5NTY0apN-qj_k_vArhqVIZ0nv9q090hN8.woff2) format('woff2');*/
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
||||
}
|
||||
/*Just change your choise color here its theme Colors*/
|
||||
body {
|
||||
background: #4F5467;
|
||||
}
|
||||
/*Top Header Part*/
|
||||
.top-left-part {
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.logo i {
|
||||
color: #ffffff;
|
||||
}
|
||||
.navbar-header {
|
||||
background: #01c0c8;
|
||||
}
|
||||
.navbar-top-links > li > a {
|
||||
color: #ffffff;
|
||||
}
|
||||
/*Right panel*/
|
||||
.right-sidebar .rpanel-title {
|
||||
background: #01c0c8;
|
||||
}
|
||||
/*Bread Crumb*/
|
||||
.bg-title .breadcrumb .active {
|
||||
color: #01c0c8;
|
||||
}
|
||||
/*Sidebar*/
|
||||
.sidebar {
|
||||
background: #4F5467;
|
||||
box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
.sidebar .label-custom {
|
||||
background: #01c0c8;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #a6acbc;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #a6acbc;
|
||||
border-left: 0px solid #4F5467;
|
||||
}
|
||||
#side-menu > li > a:hover,
|
||||
#side-menu > li > a:focus {
|
||||
background: rgba(0, 0, 0, 0.07);
|
||||
}
|
||||
#side-menu > li > a.active {
|
||||
border-left: 3px solid #01c0c8;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
}
|
||||
#side-menu > li > a.active i {
|
||||
color: #01c0c8;
|
||||
}
|
||||
#side-menu ul > li > a:hover {
|
||||
color: #01c0c8;
|
||||
}
|
||||
#side-menu ul > li > a.active {
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
}
|
||||
.sidebar #side-menu .user-pro .nav-second-level a:hover {
|
||||
color: #01c0c8;
|
||||
}
|
||||
.content-wrapper .sidebar .nav-second-level li {
|
||||
background: #444859;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.content-wrapper #side-menu ul,
|
||||
.content-wrapper .sidebar #side-menu > li:hover,
|
||||
.content-wrapper .sidebar .nav-second-level > li > a {
|
||||
background: #444859;
|
||||
}
|
||||
}
|
||||
.fix-sidebar .top-left-part {
|
||||
background: #01c0c8;
|
||||
}
|
||||
/*themecolor*/
|
||||
.bg-theme {
|
||||
background-color: #fb9678 !important;
|
||||
}
|
||||
.bg-theme-dark {
|
||||
background-color: #01c0c8 !important;
|
||||
}
|
||||
/*Chat widget*/
|
||||
.chat-list .odd .chat-text {
|
||||
background: #01c0c8;
|
||||
}
|
||||
/*Button*/
|
||||
.btn-custom {
|
||||
background: #01c0c8;
|
||||
border: 1px solid #01c0c8;
|
||||
color: #ffffff;
|
||||
}
|
||||
.btn-custom:hover {
|
||||
background: #01c0c8;
|
||||
opacity: 0.8;
|
||||
color: #ffffff;
|
||||
border: 1px solid #01c0c8;
|
||||
}
|
||||
/*Custom tab*/
|
||||
.customtab li.active a,
|
||||
.customtab li.active a:hover,
|
||||
.customtab li.active a:focus {
|
||||
border-bottom: 2px solid #01c0c8;
|
||||
color: #01c0c8;
|
||||
}
|
||||
.tabs-vertical li.active a,
|
||||
.tabs-vertical li.active a:hover,
|
||||
.tabs-vertical li.active a:focus {
|
||||
background: #01c0c8;
|
||||
border-right: 2px solid #01c0c8;
|
||||
}
|
||||
/*Nav-pills*/
|
||||
.nav-pills > li.active > a,
|
||||
.nav-pills > li.active > a:focus,
|
||||
.nav-pills > li.active > a:hover {
|
||||
background: #01c0c8;
|
||||
color: #ffffff;
|
||||
}
|
||||
+151
@@ -0,0 +1,151 @@
|
||||
/*@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,300,600,700);*/
|
||||
/*Theme Colors*/
|
||||
/*bootstrap Color*/
|
||||
/*Normal Color*/
|
||||
/*Border radius*/
|
||||
/*Preloader*/
|
||||
.preloader {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
position: fixed;
|
||||
z-index: 99999;
|
||||
background: #fff;
|
||||
}
|
||||
.preloader .cssload-speeding-wheel {
|
||||
position: absolute;
|
||||
top: calc(50% - 3.5px);
|
||||
left: calc(50% - 3.5px);
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/2fCJtbhSlhNNa6S2xlh9GyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+02BC, U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200B-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/UGh2YG8gx86rRGiAZYIbVyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/yQWaOD4iNU5NTY0apN-qj_k_vArhqVIZ0nv9q090hN8.woff2) format('woff2');*/
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
||||
}
|
||||
/*Just change your choise color here its theme Colors*/
|
||||
body {
|
||||
background: #fff;
|
||||
}
|
||||
/*Top Header Part*/
|
||||
.top-left-part {
|
||||
background: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
.logo i {
|
||||
color: #ffffff;
|
||||
}
|
||||
.navbar-header {
|
||||
background: #01c0c8;
|
||||
}
|
||||
.navbar-top-links > li > a {
|
||||
color: #ffffff;
|
||||
}
|
||||
/*Right panel*/
|
||||
.right-sidebar .rpanel-title {
|
||||
background: #01c0c8;
|
||||
}
|
||||
/*Bread Crumb*/
|
||||
.bg-title .breadcrumb .active {
|
||||
color: #01c0c8;
|
||||
}
|
||||
/*Sidebar*/
|
||||
.sidebar {
|
||||
background: #fff;
|
||||
box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
.sidebar .label-custom {
|
||||
background: #01c0c8;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #54667a;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #54667a;
|
||||
border-left: 0px solid #fff;
|
||||
}
|
||||
#side-menu > li > a:hover,
|
||||
#side-menu > li > a:focus {
|
||||
background: rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
#side-menu > li > a.active {
|
||||
border-left: 3px solid #01c0c8;
|
||||
color: #2b2b2b;
|
||||
font-weight: 500;
|
||||
}
|
||||
#side-menu > li > a.active i {
|
||||
color: #01c0c8;
|
||||
}
|
||||
#side-menu ul > li > a:hover {
|
||||
color: #01c0c8;
|
||||
}
|
||||
#side-menu ul > li > a.active {
|
||||
color: #2b2b2b;
|
||||
font-weight: 500;
|
||||
}
|
||||
.sidebar #side-menu .user-pro .nav-second-level a:hover {
|
||||
color: #01c0c8;
|
||||
}
|
||||
.fix-sidebar .top-left-part {
|
||||
background: #01c0c8;
|
||||
}
|
||||
/*themecolor*/
|
||||
.bg-theme {
|
||||
background-color: #fb9678 !important;
|
||||
}
|
||||
.bg-theme-dark {
|
||||
background-color: #01c0c8 !important;
|
||||
}
|
||||
/*Chat widget*/
|
||||
.chat-list .odd .chat-text {
|
||||
background: #01c0c8;
|
||||
}
|
||||
/*Button*/
|
||||
.btn-custom {
|
||||
background: #01c0c8;
|
||||
border: 1px solid #01c0c8;
|
||||
color: #ffffff;
|
||||
}
|
||||
.btn-custom:hover {
|
||||
background: #01c0c8;
|
||||
opacity: 0.8;
|
||||
color: #ffffff;
|
||||
border: 1px solid #01c0c8;
|
||||
}
|
||||
/*Custom tab*/
|
||||
.customtab li.active a,
|
||||
.customtab li.active a:hover,
|
||||
.customtab li.active a:focus {
|
||||
border-bottom: 2px solid #01c0c8;
|
||||
color: #01c0c8;
|
||||
}
|
||||
.tabs-vertical li.active a,
|
||||
.tabs-vertical li.active a:hover,
|
||||
.tabs-vertical li.active a:focus {
|
||||
background: #01c0c8;
|
||||
border-right: 2px solid #01c0c8;
|
||||
}
|
||||
/*Nav-pills*/
|
||||
.nav-pills > li.active > a,
|
||||
.nav-pills > li.active > a:focus,
|
||||
.nav-pills > li.active > a:hover {
|
||||
background: #01c0c8;
|
||||
color: #ffffff;
|
||||
}
|
||||
@@ -0,0 +1,161 @@
|
||||
@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,300,600,700);
|
||||
/*Theme Colors*/
|
||||
/*bootstrap Color*/
|
||||
/*Normal Color*/
|
||||
/*Border radius*/
|
||||
/*Preloader*/
|
||||
.preloader {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
position: fixed;
|
||||
z-index: 99999;
|
||||
background: #fff;
|
||||
}
|
||||
.preloader .cssload-speeding-wheel {
|
||||
position: absolute;
|
||||
top: calc(50% - 3.5px);
|
||||
left: calc(50% - 3.5px);
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/2fCJtbhSlhNNa6S2xlh9GyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+02BC, U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200B-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/UGh2YG8gx86rRGiAZYIbVyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/yQWaOD4iNU5NTY0apN-qj_k_vArhqVIZ0nv9q090hN8.woff2) format('woff2');*/
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
||||
}
|
||||
/*Just change your choise color here its theme Colors*/
|
||||
body {
|
||||
background: #4F5467;
|
||||
}
|
||||
/*Top Header Part*/
|
||||
.top-left-part {
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.logo i {
|
||||
color: #ffffff;
|
||||
}
|
||||
.navbar-header {
|
||||
background: #ab8ce4;
|
||||
}
|
||||
.navbar-top-links > li > a {
|
||||
color: #ffffff;
|
||||
}
|
||||
/*Right panel*/
|
||||
.right-sidebar .rpanel-title {
|
||||
background: #ab8ce4;
|
||||
}
|
||||
/*Bread Crumb*/
|
||||
.bg-title .breadcrumb .active {
|
||||
color: #ab8ce4;
|
||||
}
|
||||
/*Sidebar*/
|
||||
.sidebar {
|
||||
background: #4F5467;
|
||||
box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
.sidebar .label-custom {
|
||||
background: #01c0c8;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #a6acbc;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #a6acbc;
|
||||
border-left: 0px solid #4F5467;
|
||||
}
|
||||
#side-menu > li > a:hover,
|
||||
#side-menu > li > a:focus {
|
||||
background: rgba(0, 0, 0, 0.07);
|
||||
}
|
||||
#side-menu > li > a.active {
|
||||
border-left: 3px solid #ab8ce4;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
}
|
||||
#side-menu > li > a.active i {
|
||||
color: #ab8ce4;
|
||||
}
|
||||
#side-menu ul > li > a:hover {
|
||||
color: #ab8ce4;
|
||||
}
|
||||
#side-menu ul > li > a.active {
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
}
|
||||
.sidebar #side-menu .user-pro .nav-second-level a:hover {
|
||||
color: #ab8ce4;
|
||||
}
|
||||
.content-wrapper .sidebar .nav-second-level li {
|
||||
background: #444859;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.content-wrapper #side-menu ul,
|
||||
.content-wrapper .sidebar #side-menu > li:hover,
|
||||
.content-wrapper .sidebar .nav-second-level > li > a {
|
||||
background: #444859;
|
||||
}
|
||||
}
|
||||
.fix-sidebar .top-left-part {
|
||||
background: #ab8ce4;
|
||||
}
|
||||
/*themecolor*/
|
||||
.bg-theme {
|
||||
background-color: #fb9678 !important;
|
||||
}
|
||||
.bg-theme-dark {
|
||||
background-color: #01c0c8 !important;
|
||||
}
|
||||
/*Chat widget*/
|
||||
.chat-list .odd .chat-text {
|
||||
background: #ab8ce4;
|
||||
}
|
||||
/*Button*/
|
||||
.btn-custom {
|
||||
background: #ab8ce4;
|
||||
border: 1px solid #ab8ce4;
|
||||
color: #ffffff;
|
||||
}
|
||||
.btn-custom:hover {
|
||||
background: #ab8ce4;
|
||||
opacity: 0.8;
|
||||
color: #ffffff;
|
||||
border: 1px solid #ab8ce4;
|
||||
}
|
||||
/*Custom tab*/
|
||||
.customtab li.active a,
|
||||
.customtab li.active a:hover,
|
||||
.customtab li.active a:focus {
|
||||
border-bottom: 2px solid #ab8ce4;
|
||||
color: #ab8ce4;
|
||||
}
|
||||
.tabs-vertical li.active a,
|
||||
.tabs-vertical li.active a:hover,
|
||||
.tabs-vertical li.active a:focus {
|
||||
background: #ab8ce4;
|
||||
border-right: 2px solid #ab8ce4;
|
||||
}
|
||||
/*Nav-pills*/
|
||||
.nav-pills > li.active > a,
|
||||
.nav-pills > li.active > a:focus,
|
||||
.nav-pills > li.active > a:hover {
|
||||
background: #ab8ce4;
|
||||
color: #ffffff;
|
||||
}
|
||||
+151
@@ -0,0 +1,151 @@
|
||||
@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,300,600,700);
|
||||
/*Theme Colors*/
|
||||
/*bootstrap Color*/
|
||||
/*Normal Color*/
|
||||
/*Border radius*/
|
||||
/*Preloader*/
|
||||
.preloader {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
position: fixed;
|
||||
z-index: 99999;
|
||||
background: #fff;
|
||||
}
|
||||
.preloader .cssload-speeding-wheel {
|
||||
position: absolute;
|
||||
top: calc(50% - 3.5px);
|
||||
left: calc(50% - 3.5px);
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/2fCJtbhSlhNNa6S2xlh9GyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+02BC, U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200B-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/UGh2YG8gx86rRGiAZYIbVyEAvth_LlrfE80CYdSH47w.woff2) format('woff2');*/
|
||||
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* This is for popins font for firefox */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: url(https://fonts.gstatic.com/s/poppins/v1/yQWaOD4iNU5NTY0apN-qj_k_vArhqVIZ0nv9q090hN8.woff2) format('woff2');*/
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
||||
}
|
||||
/*Just change your choise color here its theme Colors*/
|
||||
body {
|
||||
background: #fff;
|
||||
}
|
||||
/*Top Header Part*/
|
||||
.top-left-part {
|
||||
background: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
.logo i {
|
||||
color: #ffffff;
|
||||
}
|
||||
.navbar-header {
|
||||
background: #ab8ce4;
|
||||
}
|
||||
.navbar-top-links > li > a {
|
||||
color: #ffffff;
|
||||
}
|
||||
/*Right panel*/
|
||||
.right-sidebar .rpanel-title {
|
||||
background: #ab8ce4;
|
||||
}
|
||||
/*Bread Crumb*/
|
||||
.bg-title .breadcrumb .active {
|
||||
color: #ab8ce4;
|
||||
}
|
||||
/*Sidebar*/
|
||||
.sidebar {
|
||||
background: #fff;
|
||||
box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
.sidebar .label-custom {
|
||||
background: #01c0c8;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #54667a;
|
||||
}
|
||||
#side-menu li a {
|
||||
color: #54667a;
|
||||
border-left: 0px solid #fff;
|
||||
}
|
||||
#side-menu > li > a:hover,
|
||||
#side-menu > li > a:focus {
|
||||
background: rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
#side-menu > li > a.active {
|
||||
border-left: 3px solid #ab8ce4;
|
||||
color: #2b2b2b;
|
||||
font-weight: 500;
|
||||
}
|
||||
#side-menu > li > a.active i {
|
||||
color: #ab8ce4;
|
||||
}
|
||||
#side-menu ul > li > a:hover {
|
||||
color: #ab8ce4;
|
||||
}
|
||||
#side-menu ul > li > a.active {
|
||||
color: #2b2b2b;
|
||||
font-weight: 500;
|
||||
}
|
||||
.sidebar #side-menu .user-pro .nav-second-level a:hover {
|
||||
color: #ab8ce4;
|
||||
}
|
||||
.fix-sidebar .top-left-part {
|
||||
background: #ab8ce4;
|
||||
}
|
||||
/*themecolor*/
|
||||
.bg-theme {
|
||||
background-color: #fb9678 !important;
|
||||
}
|
||||
.bg-theme-dark {
|
||||
background-color: #01c0c8 !important;
|
||||
}
|
||||
/*Chat widget*/
|
||||
.chat-list .odd .chat-text {
|
||||
background: #ab8ce4;
|
||||
}
|
||||
/*Button*/
|
||||
.btn-custom {
|
||||
background: #ab8ce4;
|
||||
border: 1px solid #ab8ce4;
|
||||
color: #ffffff;
|
||||
}
|
||||
.btn-custom:hover {
|
||||
background: #ab8ce4;
|
||||
opacity: 0.8;
|
||||
color: #ffffff;
|
||||
border: 1px solid #ab8ce4;
|
||||
}
|
||||
/*Custom tab*/
|
||||
.customtab li.active a,
|
||||
.customtab li.active a:hover,
|
||||
.customtab li.active a:focus {
|
||||
border-bottom: 2px solid #ab8ce4;
|
||||
color: #ab8ce4;
|
||||
}
|
||||
.tabs-vertical li.active a,
|
||||
.tabs-vertical li.active a:hover,
|
||||
.tabs-vertical li.active a:focus {
|
||||
background: #ab8ce4;
|
||||
border-right: 2px solid #ab8ce4;
|
||||
}
|
||||
/*Nav-pills*/
|
||||
.nav-pills > li.active > a,
|
||||
.nav-pills > li.active > a:focus,
|
||||
.nav-pills > li.active > a:hover {
|
||||
background: #ab8ce4;
|
||||
color: #ffffff;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
+120
@@ -0,0 +1,120 @@
|
||||
/* devanagari */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
/*src: local('Poppins Light'), local('Poppins-Light'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLDz8Z11lFc-K.woff2) format('woff2');*/
|
||||
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
/*src: local('Poppins Light'), local('Poppins-Light'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLDz8Z1JlFc-K.woff2) format('woff2');*/
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
/*src: local('Poppins Light'), local('Poppins-Light'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLDz8Z1xlFQ.woff2) format('woff2');*/
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* devanagari */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: local('Poppins Regular'), local('Poppins-Regular'), url(https://fonts.gstatic.com/s/poppins/v9/pxiEyp8kv8JHgFVrJJbecmNE.woff2) format('woff2');*/
|
||||
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: local('Poppins Regular'), local('Poppins-Regular'), url(https://fonts.gstatic.com/s/poppins/v9/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2');*/
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
/*src: local('Poppins Regular'), local('Poppins-Regular'), url(https://fonts.gstatic.com/s/poppins/v9/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');*/
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* devanagari */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
/*src: local('Poppins Medium'), local('Poppins-Medium'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2) format('woff2');*/
|
||||
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
/*src: local('Poppins Medium'), local('Poppins-Medium'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2) format('woff2');*/
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
/*src: local('Poppins Medium'), local('Poppins-Medium'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2');*/
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* devanagari */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
/*src: local('Poppins SemiBold'), local('Poppins-SemiBold'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLEj6Z11lFc-K.woff2) format('woff2');*/
|
||||
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
/*src: local('Poppins SemiBold'), local('Poppins-SemiBold'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2) format('woff2');*/
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
/*src: local('Poppins SemiBold'), local('Poppins-SemiBold'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2');*/
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* devanagari */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
/*src: local('Poppins Bold'), local('Poppins-Bold'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLCz7Z11lFc-K.woff2) format('woff2');*/
|
||||
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
/*src: local('Poppins Bold'), local('Poppins-Bold'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2) format('woff2');*/
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
/*src: local('Poppins Bold'), local('Poppins-Bold'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');*/
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
.preloader {
|
||||
width: 100%;
|
||||
height: 31px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.cssload-speeding-wheel {
|
||||
width: 31px;
|
||||
height: 31px;
|
||||
margin: 0 auto;
|
||||
border: 2px solid rgba(97,100,193,0.98);
|
||||
border-radius: 50%;
|
||||
border-left-color: transparent;
|
||||
border-right-color: transparent;
|
||||
animation: cssload-spin 425ms infinite linear;
|
||||
-o-animation: cssload-spin 425ms infinite linear;
|
||||
-ms-animation: cssload-spin 425ms infinite linear;
|
||||
-webkit-animation: cssload-spin 425ms infinite linear;
|
||||
-moz-animation: cssload-spin 425ms infinite linear;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@keyframes cssload-spin {
|
||||
100%{ transform: rotate(360deg); transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
@-o-keyframes cssload-spin {
|
||||
100%{ -o-transform: rotate(360deg); transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
@-ms-keyframes cssload-spin {
|
||||
100%{ -ms-transform: rotate(360deg); transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
@-webkit-keyframes cssload-spin {
|
||||
100%{ -webkit-transform: rotate(360deg); transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
@-moz-keyframes cssload-spin {
|
||||
100%{ -moz-transform: rotate(360deg); transform: rotate(360deg); }
|
||||
}
|
||||
+15169
File diff suppressed because it is too large
Load Diff
+24
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user