first commit, after modifying client section
This commit is contained in:
131
public/dashboard_assets/css/styles.css
vendored
Executable file
131
public/dashboard_assets/css/styles.css
vendored
Executable 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";
|
||||
}
|
||||
Reference in New Issue
Block a user