first commit, after modifying client section

This commit is contained in:
Kwesi Banson
2023-02-22 07:48:50 +00:00
commit ad0dd6a6e1
1880 changed files with 538494 additions and 0 deletions

View File

@@ -0,0 +1,109 @@
body {
font-size: 0.875rem;
}
.feather {
width: 16px;
height: 16px;
vertical-align: text-bottom;
}
header.navbar {
height: 48px;
background: #ffffff;
}
#sidebarMenu {
background: #ffffff;
}
/*
* Sidebar
*/
.sidebar {
position: fixed;
top: 0;
/* rtl:raw:
right: 0;
*/
bottom: 0;
/* rtl:remove */
left: 0;
z-index: 100; /* Behind the navbar */
padding: 48px 0 0; /* Height of navbar */
/* box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1); */
}
@media (max-width: 767.98px) {
.sidebar {
top: 5rem;
}
}
.sidebar-sticky {
position: relative;
top: 0;
height: calc(100vh - 48px);
padding-top: 0.5rem;
overflow-x: hidden;
overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}
.sidebar .nav-link {
font-weight: 500;
color: #333;
}
.sidebar .nav-link .feather {
margin-right: 4px;
color: #727272;
}
.sidebar .nav-link.active {
color: #2470dc;
}
.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
color: inherit;
}
.sidebar-heading {
font-size: 0.75rem;
text-transform: uppercase;
}
/*
* Navbar
*/
.navbar-brand {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
font-size: 1rem;
background-color: rgba(0, 0, 0, 0.25);
box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.25);
}
.navbar .navbar-toggler {
top: 0.25rem;
right: 1rem;
}
.navbar .form-control {
padding: 0.75rem 1rem;
border-width: 0;
border-radius: 0;
}
.form-control-dark {
color: #fff;
background-color: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.1);
}
.form-control-dark:focus {
border-color: transparent;
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

131
public/dashboard_assets/css/styles.css vendored Executable file
View File

@@ -0,0 +1,131 @@
body {
font-family: "Raleway";
background: #f8fbfc;
}
.country-status-card {
background: #fefefe;
box-shadow: 0px 6px 14px rgba(228, 228, 228, 0.6);
border-radius: 18px;
min-height: 240px;
display: flex;
flex-direction: column;
padding: 1.3em;
margin-bottom: 1.3rem;
}
.country-status-card .network-statud-card {
background: #ffffff;
min-height: 124px;
box-shadow: 0px 6px 14px rgba(228, 228, 228, 0.6);
border-radius: 8px;
display: flex;
flex-direction: column;
padding: 0.8em 1.4em;
}
@media screen and (min-width: 769px) {
.country-status-card .network-statud-card.w-auto {
width: calc(98% / 2) !important;
}
}
.country-status-card .network-statud-card .network-detail {
display: flex;
}
.country-status-card .network-statud-card .network-detail img {
width: 26px;
height: 21px;
margin-top: 3px;
margin-right: 8px;
}
.country-status-card .network-statud-card .network-detail .name {
font-weight: 600;
margin: 0;
}
.country-status-card .network-statud-card .network-detail .time {
margin: 0;
margin-top: 3px;
}
.country-status-card .network-statud-card .status-history-row {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 1em;
}
.country-status-card .network-statud-card .status-history-row .status-history {
display: flex;
flex-grow: 1;
}
.country-status-card .network-statud-card .status-history-row .status-history .time-status {
border-radius: 6px;
height: 34px;
flex-grow: 1;
flex-basis: 90px;
display: flex;
align-items: center;
padding-left: 28px;
position: relative;
}
.country-status-card .network-statud-card .status-history-row .status-history .time-status p {
margin: 0;
font-weight: 600;
font-size: 0.8rem;
}
.country-status-card .network-statud-card .status-history-row .status-history .time-status.up:not(:first-of-type), .country-status-card .network-statud-card .status-history-row .status-history .time-status.down:not(:first-of-type) {
margin-left: 4px;
}
.country-status-card .network-statud-card .status-history-row .status-history .time-status.up::before, .country-status-card .network-statud-card .status-history-row .status-history .time-status.down::before {
content: "";
position: absolute;
left: 4px;
height: 24px;
width: 17px;
}
.country-status-card .network-statud-card .status-history-row .status-history .time-status.up {
background: #edfadd;
border: 3px solid rgba(113, 201, 0, 0.23);
}
.country-status-card .network-statud-card .status-history-row .status-history .time-status.up::before {
background: url(../img/on-icon.svg);
background-repeat: no-repeat;
background-position: center;
}
.country-status-card .network-statud-card .status-history-row .status-history .time-status.down {
background: #ff3a3a;
border: 3px solid #fc9f9f;
color: #ffffff;
}
.country-status-card .network-statud-card .status-history-row .status-history .time-status.down::before {
background: url(../img/off-icon.svg);
background-repeat: no-repeat;
background-position: center;
}
.country-status-card .network-statud-card .status-history-row .more-details {
margin-left: 24px;
}
.country-status-card .network-statud-card .status-history-row .more-details .btn {
line-height: 0;
display: flex;
justify-content: center;
align-items: center;
}
.country-status-card .network-statud-card .availability-tag {
padding: 4px 12px;
border-radius: 20px;
font-size: 0.7rem;
font-weight: bold;
color: #ffffff;
letter-spacing: 1px;
margin: 0;
height: 26px;
}
.country-status-card .network-statud-card .availability-tag.up {
background: #71c900;
}
.country-status-card .network-statud-card .availability-tag.up::before {
content: "Available";
}
.country-status-card .network-statud-card .availability-tag.down {
background: #ff3a3a;
}
.country-status-card .network-statud-card .availability-tag.down::before {
content: "Unavailable";
}