initial commit
This commit is contained in:
@@ -0,0 +1,166 @@
|
||||
.appointment-card {
|
||||
border-radius: 20px;
|
||||
box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07);
|
||||
background-color: #fff;
|
||||
align-items: start;
|
||||
gap: 10px;
|
||||
max-width: 600px;
|
||||
min-width: 400px;
|
||||
}
|
||||
|
||||
.patient-avatar {
|
||||
background-color: #a4bbe9;
|
||||
border-radius: 50%;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
.patient-info {
|
||||
display: flex;
|
||||
margin-top: 8px;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.patient-name {
|
||||
color: #1c2541;
|
||||
font: 500 16px/75% Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.patient-email {
|
||||
color: #8296c5;
|
||||
margin-top: 2px;
|
||||
font: 400 14px/86% Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.appointment-details {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
max-width: 330px;
|
||||
font-size: 14px;
|
||||
color: #384c7f;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.location-info {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.location-icon {
|
||||
width: 18px;
|
||||
fill: #384c7f;
|
||||
}
|
||||
|
||||
.location-text {
|
||||
font-family: Poppins, sans-serif;
|
||||
flex-grow: 1;
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
.date-time-info {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.date-info {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
margin: auto -5px auto 0;
|
||||
}
|
||||
|
||||
.date-icon {
|
||||
width: 20px;
|
||||
stroke: #384c7f;
|
||||
}
|
||||
|
||||
.date-text {
|
||||
font-family: Poppins, sans-serif;
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
.time-info {
|
||||
display: flex;
|
||||
gap: 9px;
|
||||
}
|
||||
|
||||
.time-icon {
|
||||
width: 20px;
|
||||
fill: #384c7f;
|
||||
}
|
||||
|
||||
.time-text {
|
||||
font-family: Poppins, sans-serif;
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
.approve-button {
|
||||
border-style: none;
|
||||
border-radius: 50px;
|
||||
background-color: var(--Green-2, #51dbd3);
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
padding: 2px 46px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.approve-button:hover {
|
||||
background-color: #37b3b7;
|
||||
}
|
||||
|
||||
.icon-wrapper {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.approve-icon {
|
||||
width: 40px;
|
||||
aspect-ratio: 1;
|
||||
object-fit: auto;
|
||||
object-position: center;
|
||||
fill: #fff;
|
||||
filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.08));
|
||||
}
|
||||
|
||||
.approve-text {
|
||||
margin: auto 0;
|
||||
color: var(--Green-5, #15647a);
|
||||
font: 500 14px/193% Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.decline-button {
|
||||
border-style: none;
|
||||
border-radius: 50px;
|
||||
background-color: #faced7;
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
padding: 2px 50px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.decline-button:hover {
|
||||
background-color: #f7b8c5;
|
||||
}
|
||||
|
||||
.decline-icon-wrapper {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.decline-icon {
|
||||
width: 40px;
|
||||
aspect-ratio: 1;
|
||||
object-fit: auto;
|
||||
object-position: center;
|
||||
fill: #fff;
|
||||
filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.08));
|
||||
}
|
||||
|
||||
.decline-text {
|
||||
margin: auto 0;
|
||||
color: #cc2a2a;
|
||||
font: 500 14px/193% Poppins, sans-serif;
|
||||
}
|
||||
@@ -0,0 +1,202 @@
|
||||
h3,
|
||||
h4,
|
||||
h5 {
|
||||
font-family: "Poppins";
|
||||
}
|
||||
|
||||
.content {
|
||||
padding-left: 250px;
|
||||
}
|
||||
|
||||
.activity-container {
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 8px 30px 0 rgba(37, 36, 34, 0.07);
|
||||
background-color: #fff;
|
||||
display: flex;
|
||||
padding: 0 14px 0 0;
|
||||
gap: 12px;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.summary-icon-wrapper {
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border-radius: 20px;
|
||||
background-color: #fecd5a;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
font-size: 14px;
|
||||
color: #1c1c30;
|
||||
font-weight: 400;
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
padding: 0 30px;
|
||||
}
|
||||
|
||||
.summary-icon {
|
||||
object-fit: auto;
|
||||
object-position: center;
|
||||
width: 39px;
|
||||
fill: #1c1c30;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.summary-text {
|
||||
font-family: Poppins, sans-serif;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.summary-details {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
.summary-count {
|
||||
color: #efa800;
|
||||
font: 600 28px Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.summary-unit {
|
||||
color: #384c7f;
|
||||
font: 400 14px Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.calories-container {
|
||||
display: flex;
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
.avatar-container {
|
||||
background-color: #eaecff;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
}
|
||||
|
||||
.calories-icon {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
object-fit: cover;
|
||||
object-position: center;
|
||||
}
|
||||
|
||||
.calories-info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
flex-basis: 0;
|
||||
width: fit-content;
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
.calories-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: 20px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.calories-label {
|
||||
color: #384c7f;
|
||||
font-family: Poppins, sans-serif;
|
||||
font-weight: 500;
|
||||
font-size: medium;
|
||||
}
|
||||
|
||||
.calories-value {
|
||||
color: #8296c5;
|
||||
text-align: right;
|
||||
font-size: 15px;
|
||||
font-family: Poppins, sans-serif;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.calories-value .calories-total {
|
||||
font-weight: 500;
|
||||
font-size: 18px;
|
||||
color: rgba(55, 179, 183, 1);
|
||||
}
|
||||
|
||||
.calories-progress {
|
||||
border-radius: 16px;
|
||||
background-color: #f8f2ff;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 8px !important;
|
||||
}
|
||||
|
||||
.calories-progress-bar {
|
||||
border-radius: 16px;
|
||||
background-color: #51dbd3 !important;
|
||||
height: 8px;
|
||||
}
|
||||
|
||||
.weight-card {
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 5px 10px 0 rgba(234, 240, 246, 1);
|
||||
background-color: #fff;
|
||||
display: flex;
|
||||
max-width: 360px;
|
||||
gap: 20px;
|
||||
font-weight: 500;
|
||||
padding: 17px 16px;
|
||||
}
|
||||
|
||||
.weight-info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.date {
|
||||
color: #8296c5;
|
||||
font-family: "Poppins", sans-serif;
|
||||
}
|
||||
|
||||
.weight {
|
||||
color: #384c7f;
|
||||
margin-top: 7px;
|
||||
font: 18px "Poppins", sans-serif;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.weight-details {
|
||||
align-self: start;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
font-size: 14px;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.time {
|
||||
color: #8296c5;
|
||||
font-family: "Poppins", sans-serif;
|
||||
font-weight: 400;
|
||||
align-self: end;
|
||||
}
|
||||
|
||||
.weight-change {
|
||||
display: flex;
|
||||
margin-top: 9px;
|
||||
gap: 9px;
|
||||
color: #f5634a;
|
||||
text-align: right;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.change-value {
|
||||
font-family: "Poppins", sans-serif;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.change-icon {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
align-self: start;
|
||||
}
|
||||
@@ -0,0 +1,75 @@
|
||||
.container {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.content {
|
||||
padding-left: 250px;
|
||||
}
|
||||
|
||||
.main-content {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.consultation-section {
|
||||
margin-top: 55px;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.consultation-header {
|
||||
color: #1c2541;
|
||||
text-align: center;
|
||||
font-size: 30px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.consultation-card {
|
||||
background-color: #fff;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 23px;
|
||||
}
|
||||
|
||||
.card-body {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
}
|
||||
.doctor-info {
|
||||
color: #414d55;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.doctor-name {
|
||||
font-weight: 500;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.doctor-email {
|
||||
margin-top: 10px;
|
||||
font-weight: 400;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.btn .view-result {
|
||||
background-color: #fff;
|
||||
color: #2662f0;
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0px 1px 8px rgba(20, 46, 110, 0.1);
|
||||
}
|
||||
|
||||
.modal-dialog {
|
||||
max-width: 500px;
|
||||
margin: 1.75rem auto;
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
padding: 20px;
|
||||
}
|
||||
@@ -0,0 +1,907 @@
|
||||
body {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.vertical-line {
|
||||
width: 2px;
|
||||
height: 180px;
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
.customer-profile {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
max-width: 324px;
|
||||
}
|
||||
|
||||
.profile-image {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
border-radius: 50%;
|
||||
background-color: #a4bbe9;
|
||||
}
|
||||
|
||||
.customer-name {
|
||||
margin-top: 10px;
|
||||
font: 500 18px/100% Poppins, sans-serif;
|
||||
color: #384c7f;
|
||||
}
|
||||
|
||||
.customer-email {
|
||||
font: 400 15px/100% Poppins, sans-serif;
|
||||
color: #8296c5;
|
||||
}
|
||||
|
||||
.customer-stats {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-self: stretch;
|
||||
gap: 20px;
|
||||
margin-top: 15px;
|
||||
padding: 12px 25px;
|
||||
border-radius: 16px;
|
||||
background-color: #384c7f;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 8px 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font: 300 12px/117% Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.stat-number {
|
||||
font: 500 20px/100% Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.stat-unit {
|
||||
font: 300 12px/117% Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.obesity-status {
|
||||
width: 100px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
.obesity-label {
|
||||
font: 300 12px/117% Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.obesity-value {
|
||||
margin-top: 10px;
|
||||
font: 500 16px/87.5% Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.boxshadow {
|
||||
border-radius: 16px;
|
||||
box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07);
|
||||
background-color: #fff;
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
/* justify-content: space-between; */
|
||||
padding: 25px 80px 25px 30px;
|
||||
}
|
||||
|
||||
.calories-container {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
justify-content: flex-start;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.icon-wrapper {
|
||||
align-items: center;
|
||||
|
||||
border-radius: 8px;
|
||||
display: flex;
|
||||
height: 46px;
|
||||
justify-content: center;
|
||||
margin: auto 0;
|
||||
width: 46px;
|
||||
}
|
||||
|
||||
.icon-wrapper,
|
||||
#calories {
|
||||
background-color: #ffced4;
|
||||
}
|
||||
|
||||
.icon-wrapper,
|
||||
#distance {
|
||||
background-color: #c9ffde;
|
||||
}
|
||||
|
||||
.icon-wrapper,
|
||||
#sleep {
|
||||
background-color: #cee2ff;
|
||||
}
|
||||
|
||||
.calories-icon {
|
||||
fill: #f96577;
|
||||
object-fit: contain;
|
||||
width: 24px;
|
||||
}
|
||||
|
||||
.calories-info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.calories-label {
|
||||
color: #8296c5;
|
||||
font: 400 14px Poppins, sans-serif;
|
||||
line-height: 12px;
|
||||
}
|
||||
|
||||
.calories-value {
|
||||
color: #384c7f;
|
||||
font: 500 17px Poppins, sans-serif;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.activity-log {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
max-width: 680px;
|
||||
font-size: 16px;
|
||||
color: #384c7f;
|
||||
font-weight: 500;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.activity-header {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 40px;
|
||||
padding: 18px 27px;
|
||||
border-radius: 12px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.activity-header {
|
||||
flex-wrap: wrap;
|
||||
padding: 0 20px;
|
||||
white-space: initial;
|
||||
}
|
||||
}
|
||||
|
||||
.header-date,
|
||||
.header-activity,
|
||||
.header-distance,
|
||||
.header-duration {
|
||||
font-family: Poppins, sans-serif;
|
||||
width: 160px;
|
||||
}
|
||||
|
||||
.header-activity,
|
||||
.header-distance,
|
||||
.header-duration {
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
.activity-item {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 40px;
|
||||
padding: 18px 25px;
|
||||
border-radius: 12px;
|
||||
background-color: #fff;
|
||||
box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07);
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.activity-item {
|
||||
flex-wrap: wrap;
|
||||
padding: 0 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.item-date,
|
||||
.item-activity,
|
||||
.item-distance,
|
||||
.item-duration {
|
||||
font-family: Poppins, sans-serif;
|
||||
width: 160px;
|
||||
}
|
||||
|
||||
.item-activity,
|
||||
.item-distance,
|
||||
.item-duration {
|
||||
max-width: 120px;
|
||||
}
|
||||
|
||||
.appointment-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
max-width: 335px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.appointment-time {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
padding-right: 20px;
|
||||
color: #384c7f;
|
||||
font-weight: 400;
|
||||
line-height: 100%;
|
||||
}
|
||||
|
||||
.appointment-status {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 50%;
|
||||
background-color: #37b3b7;
|
||||
align-self: start;
|
||||
}
|
||||
|
||||
.appointment-datetime {
|
||||
font-family: Poppins, sans-serif;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.appointment-details {
|
||||
display: flex;
|
||||
gap: 14px;
|
||||
width: 100%;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.appointment-connector {
|
||||
margin: -4px 0 0 5px;
|
||||
border: 1px dashed #a4bbe9;
|
||||
height: 120px;
|
||||
}
|
||||
|
||||
.doctor-info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: start;
|
||||
flex-grow: 1;
|
||||
flex-basis: 0;
|
||||
width: auto;
|
||||
margin: auto 0;
|
||||
padding: 10px 80px 10px 16px;
|
||||
border: 1px solid #a4bbe9;
|
||||
border-radius: 15px;
|
||||
}
|
||||
|
||||
.doctor-name {
|
||||
color: #384c7f;
|
||||
font-family: Poppins, sans-serif;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.hospital-name {
|
||||
color: #8296c5;
|
||||
font-family: Poppins, sans-serif;
|
||||
font-weight: 400;
|
||||
line-height: 5px;
|
||||
}
|
||||
|
||||
.content{
|
||||
margin-top: 20px;
|
||||
margin-left: 100px;
|
||||
}
|
||||
|
||||
.calories-description {
|
||||
display: block;
|
||||
font-size: 0.8em;
|
||||
color: #666;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
body{
|
||||
margin-top:20px;
|
||||
background:#f8f8f8
|
||||
}
|
||||
|
||||
.container-notification {
|
||||
background-color: #ffffff;
|
||||
border-radius: 6px;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Efect shadow */
|
||||
padding: 10px;
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.container-notification a {
|
||||
text-decoration: none; /* Menghapus dekorasi hyperlink */
|
||||
color: #8296c5; /* Warna teks */
|
||||
}
|
||||
.container-notification a:hover {
|
||||
color: #6fffe9; /* Warna teks saat dihover */
|
||||
}
|
||||
.containerContent {
|
||||
background-color: #ffffff;
|
||||
border-radius: 6px;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Efect shadow */
|
||||
width: 250px;
|
||||
height: 150px;
|
||||
/* margin-left: 30px;
|
||||
padding: 10px; */
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.full-width-container {
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
}
|
||||
.containerContent a {
|
||||
text-decoration: none; /* Menghapus dekorasi hyperlink */
|
||||
color: #8296c5; /* Warna teks */
|
||||
}
|
||||
.containeritem {
|
||||
background-color: #ffffff;
|
||||
border-radius: 6px;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Efect shadow */
|
||||
margin-left: 30px;
|
||||
padding: 10px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
width: calc(100% - 120px);
|
||||
}
|
||||
/* Styling untuk item-item */
|
||||
.item {
|
||||
padding-left: 265px;
|
||||
padding-bottom: 50px;
|
||||
}
|
||||
|
||||
.main-column {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
line-height: normal;
|
||||
width: 80%;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.main-column {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.main-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-self: stretch;
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.main-content {
|
||||
max-width: 100%;
|
||||
margin-top: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.payment-section {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.payment-section {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
gap: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
.payment-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
line-height: normal;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.payment-card {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.earning-card {
|
||||
align-items: start;
|
||||
border-radius: 4.444px;
|
||||
border: 1px solid rgba(243, 244, 246, 1);
|
||||
background-color: #6FFFE9;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
padding: 18px 80px 31px 14px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.earning-card {
|
||||
margin-top: 17px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.earning-title {
|
||||
color: var(--text-color-80-opacity, #0B132B);
|
||||
letter-spacing: 0.14px;
|
||||
font: 14px Outfit, sans-serif;
|
||||
}
|
||||
|
||||
.earning-amount {
|
||||
color: var(--success-green-100, #0B132B);
|
||||
margin-top: 11px;
|
||||
font: 500 20px Outfit, sans-serif;
|
||||
}
|
||||
|
||||
.earning-date {
|
||||
color: var(--Inactive-State-Color, #0B132B);
|
||||
letter-spacing: 0.09px;
|
||||
margin-top: 11px;
|
||||
font: 9px Outfit, sans-serif;
|
||||
}
|
||||
|
||||
.pending-card {
|
||||
align-items: start;
|
||||
border-radius: 4.444px;
|
||||
border: 1px solid rgba(243, 244, 246, 1);
|
||||
background-color: #0B132B;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
padding: 18px 80px 31px 15px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.pending-card {
|
||||
margin-top: 17px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.card {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.card-body{
|
||||
width: 100%;
|
||||
}
|
||||
.card-full-width {
|
||||
width: 100%;
|
||||
}
|
||||
.pending-title {
|
||||
color: var(--text-color-80-opacity, #6FFFE9);
|
||||
letter-spacing: 0.14px;
|
||||
font: 14px Outfit, sans-serif;
|
||||
}
|
||||
|
||||
.pending-amount {
|
||||
color: var(--success-green-100, #2662F0);
|
||||
margin-top: 11px;
|
||||
font: 500 20px Outfit, sans-serif;
|
||||
}
|
||||
|
||||
.pending-date {
|
||||
color: var(--Inactive-State-Color,#6FFFE9);
|
||||
letter-spacing: 0.09px;
|
||||
margin-top: 11px;
|
||||
font: 9px Outfit, sans-serif;
|
||||
}
|
||||
|
||||
.payment-title {
|
||||
color: var(--Inactive-State-Color, rgba(73, 69, 79, 0.8));
|
||||
margin-top: 33px;
|
||||
font: 500 20px Outfit, sans-serif;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.payment-title {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
.entry-accept {
|
||||
display: inline-flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 15px 26px;
|
||||
flex: 1;
|
||||
font-family: Poppins, sans-serif;
|
||||
border-radius: 50px;
|
||||
color:#15647A;
|
||||
background-color: #51DBD3;
|
||||
height: 30px;
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
.entry-decline {
|
||||
display: inline-flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 15px 26px;
|
||||
flex: 1;
|
||||
font-family: Poppins, sans-serif;
|
||||
border-radius: 50px;
|
||||
color:#CC2A2A;
|
||||
background-color: #F7B8C5;
|
||||
height: 30px;
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
.tab-container {
|
||||
display: flex;
|
||||
margin-top: 24px;
|
||||
width: 595px;
|
||||
gap: 17px;
|
||||
font-size: 15px;
|
||||
color: var(--text-color-80-opacity, rgba(34, 34, 34, 0.9));
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.15px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.tab-container {
|
||||
flex-wrap: wrap;
|
||||
white-space: initial;
|
||||
}
|
||||
}
|
||||
|
||||
.tab {
|
||||
border-radius: 26.667px;
|
||||
border: 1px solid rgba(65, 59, 137, 1);
|
||||
background-color: var(--Secondary---White, #fff);
|
||||
justify-content: center;
|
||||
padding: 15px;
|
||||
font-variant-numeric: lining-nums proportional-nums;
|
||||
font-feature-settings: "dlig" on;
|
||||
font-family: Outfit, sans-serif;
|
||||
display: inline-block;
|
||||
height: auto;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.tab {
|
||||
padding: 10px 15px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.tab {
|
||||
white-space: initial;
|
||||
padding: 0 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.tab-small {
|
||||
border-radius: 26.667px;
|
||||
border: 1px solid rgba(235, 235, 238, 1);
|
||||
background-color: var(--Secondary---White, #fff);
|
||||
justify-content: center;
|
||||
padding: 17px 23px;
|
||||
font-variant-numeric: lining-nums proportional-nums;
|
||||
font-feature-settings: "dlig" on;
|
||||
font-family: Outfit, sans-serif;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.tab-small {
|
||||
white-space: initial;
|
||||
padding: 0 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.tab-medium {
|
||||
border-radius: 26.667px;
|
||||
border: 1px solid rgba(235, 235, 238, 1);
|
||||
background-color: var(--Secondary---White, #fff);
|
||||
justify-content: center;
|
||||
padding: 17px 28px;
|
||||
font-variant-numeric: lining-nums proportional-nums;
|
||||
font-feature-settings: "dlig" on;
|
||||
font-family: Outfit, sans-serif;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.tab-medium {
|
||||
white-space: initial;
|
||||
padding: 0 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.tab-large {
|
||||
border-radius: 26.667px;
|
||||
border: 1px solid rgba(235, 235, 238, 1);
|
||||
background-color: var(--Secondary---White, #fff);
|
||||
justify-content: center;
|
||||
padding: 17px 26px;
|
||||
font-variant-numeric: lining-nums proportional-nums;
|
||||
font-feature-settings: "dlig" on;
|
||||
font-family: Outfit, sans-serif;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.tab-large {
|
||||
white-space: initial;
|
||||
padding: 0 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.payment-history {
|
||||
border-radius: 10.667px;
|
||||
border: 1px solid rgba(235, 235, 238, 1);
|
||||
background-color: var(--Secondary---White, #fff);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
padding: 0 28px 33px 0;
|
||||
margin-top: 16px;
|
||||
margin-bottom: 10px;
|
||||
width: 1150px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.payment-history {
|
||||
max-width: 100%;
|
||||
padding-right: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.history-header,
|
||||
.history-body {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(6, 1fr);
|
||||
gap: 20px;
|
||||
align-items: center;
|
||||
border-bottom: 1px solid rgba(206, 206, 206, 1);
|
||||
padding: 0 20px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.history-header {
|
||||
letter-spacing: 0.14px;
|
||||
padding-right: 68px;
|
||||
width: 1150px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.history-header {
|
||||
flex-wrap: wrap;
|
||||
padding-right: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.history-column,
|
||||
.history-entry {
|
||||
padding: 20px 0;
|
||||
text-align: center;
|
||||
font-family: Outfit, sans-serif;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.history-column {
|
||||
font-variant-numeric: lining-nums proportional-nums;
|
||||
font-feature-settings: "dlig" on;
|
||||
color: var(--Inactive-State-Color, rgba(73, 69, 79, 0.8));
|
||||
}
|
||||
|
||||
.history-body {
|
||||
color: rgba(73, 69, 79, 0.9);
|
||||
white-space: nowrap;
|
||||
letter-spacing: 0.14px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.history-body {
|
||||
white-space: initial;
|
||||
grid-template-columns: 1fr;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
|
||||
.status-success {
|
||||
color: green;
|
||||
}
|
||||
|
||||
.status-rejected {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.status-pending {
|
||||
color: orange;
|
||||
}
|
||||
|
||||
.entry-detail,
|
||||
.entry-pay{
|
||||
background-color: #f0f0f0;
|
||||
border: none;
|
||||
padding: 5px 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.history-entry-actions {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.history-entry {
|
||||
flex: 1;
|
||||
white-space: nowrap;
|
||||
word-wrap: break-word;
|
||||
letter-spacing: 0.14px;
|
||||
padding: 20px 21px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.history-entry {
|
||||
white-space: initial;
|
||||
padding: 0 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.entry-detail {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 15px 26px;
|
||||
flex: 1;
|
||||
margin-top: 15px;
|
||||
font-family: Poppins, sans-serif;
|
||||
border-radius: 50px;
|
||||
color: white;
|
||||
background-color: #0978f2;
|
||||
height: 30px;
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
.entry-pay {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 15px 26px;
|
||||
flex: 1;
|
||||
margin-top: 15px;
|
||||
font-family: Poppins, sans-serif;
|
||||
border-radius: 50px;
|
||||
color: white;
|
||||
background-color: #0EAD69;
|
||||
height: 30px;
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.entry-detail {
|
||||
white-space: initial;
|
||||
padding: 0 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.status-success {
|
||||
color: #0ead69;
|
||||
}
|
||||
|
||||
.status-pending {
|
||||
color: #0978f2;
|
||||
}
|
||||
|
||||
.status-rejected {
|
||||
color: rgba(193, 11, 14, 0.8);
|
||||
}
|
||||
|
||||
.status-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
font-size: 5px;
|
||||
color: #fff;
|
||||
font-weight: 500;
|
||||
white-space: nowrap;
|
||||
line-height: 540%;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.status-container {
|
||||
white-space: initial;
|
||||
}
|
||||
}
|
||||
|
||||
.rows-center {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.rows-center img {
|
||||
border-radius: 3.368px;
|
||||
}
|
||||
.change-photo-span {
|
||||
font-size: 12px; /* Adjust the font size as needed */
|
||||
}
|
||||
|
||||
.card-container {
|
||||
border-radius: 16px;
|
||||
box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07);
|
||||
background-color: #fff;
|
||||
display: flex;
|
||||
max-width: 350px;
|
||||
flex-direction: column;
|
||||
padding: 50px 22px 31px;
|
||||
}
|
||||
.content-wrapper {
|
||||
display: flex;
|
||||
align-items: start;
|
||||
gap: 16px;
|
||||
font-size: 14px;
|
||||
color: #435179;
|
||||
font-weight: 400;
|
||||
}
|
||||
.profile-pic {
|
||||
background-color: #51dbd3;
|
||||
border-radius: 50%;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.details {
|
||||
display: flex;
|
||||
margin-top: 20px;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
flex-basis: 0;
|
||||
width: fit-content;
|
||||
}
|
||||
.hospital-name {
|
||||
color: #1c2541;
|
||||
font: 500 20px Poppins, sans-serif;
|
||||
}
|
||||
.date-info {
|
||||
margin-top: 9px;
|
||||
font: 16px Poppins, sans-serif;
|
||||
}
|
||||
.doctor-name,
|
||||
.status,
|
||||
.time-info {
|
||||
font-family: Poppins, sans-serif;
|
||||
margin-top: 16px;
|
||||
}
|
||||
.action-button {
|
||||
justify-content: center;
|
||||
border-radius: 10px;
|
||||
background-color: #2662f0;
|
||||
align-self: end;
|
||||
margin-top: 25px;
|
||||
color: #fff;
|
||||
white-space: nowrap;
|
||||
padding: 17px 39px;
|
||||
font: 500 15px Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.status{
|
||||
color: #2662f0;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,733 @@
|
||||
body {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.admin-dashboard-title {
|
||||
color: #1c2541;
|
||||
text-align: center;
|
||||
align-self: start;
|
||||
font: 500 32px Poppins, sans-serif;
|
||||
}
|
||||
.patients-summary {
|
||||
border-radius: 16px;
|
||||
box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07);
|
||||
background-color: #fff;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 30px 77px 30px 30px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.patients-summary {
|
||||
max-width: 100%;
|
||||
padding: 0 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.content {
|
||||
padding-left: 265px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.header{
|
||||
padding-left: 265px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.patients-summary-title {
|
||||
color: #384c7f;
|
||||
letter-spacing: 0.4px;
|
||||
font: 500 20px Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.patients-summary-content {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.patients-summary-row {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.patients-summary-row {
|
||||
flex-direction: column;
|
||||
gap: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.patients-summary-column {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
line-height: normal;
|
||||
width: 24%;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.patients-summary-column {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.gender-stats {
|
||||
display: flex;
|
||||
margin-top: 22px;
|
||||
flex-grow: 1;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.gender-stats {
|
||||
margin-top: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.gender-icons {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.male-icon,
|
||||
.female-icon {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border-radius: 10px;
|
||||
background-color: #cfddff;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
padding: 0 19px;
|
||||
}
|
||||
|
||||
.female-icon {
|
||||
margin-top: 21px;
|
||||
}
|
||||
|
||||
.gender-icon {
|
||||
width: 12px;
|
||||
}
|
||||
|
||||
.gender-labels {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
font-size: 14px;
|
||||
color: #8296c5;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.28px;
|
||||
flex: 1;
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.gender-labels {
|
||||
white-space: initial;
|
||||
}
|
||||
}
|
||||
|
||||
.gender-label {
|
||||
font-family: Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.gender-count {
|
||||
color: #1c2541;
|
||||
letter-spacing: 0.4px;
|
||||
margin-top: 13px;
|
||||
font: 500 20px Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.female-label {
|
||||
margin-top: 33px;
|
||||
}
|
||||
|
||||
.bmi-stats {
|
||||
display: flex;
|
||||
margin-top: 23px;
|
||||
flex-grow: 1;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.bmi-stats {
|
||||
margin-top: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.bmi-icons {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.normal-icon,
|
||||
.obesity-icon {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border-radius: 10px;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
.normal-icon {
|
||||
background-color: #b7ffe9;
|
||||
}
|
||||
|
||||
.obesity-icon {
|
||||
background-color: #ffb8c9;
|
||||
margin-top: 21px;
|
||||
}
|
||||
|
||||
.bmi-icon {
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.bmi-labels {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
font-size: 14px;
|
||||
color: #8296c5;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.28px;
|
||||
flex: 1;
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.bmi-labels {
|
||||
white-space: initial;
|
||||
}
|
||||
}
|
||||
|
||||
.bmi-label {
|
||||
font-family: Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.bmi-count {
|
||||
color: #1c2541;
|
||||
letter-spacing: 0.4px;
|
||||
margin-top: 13px;
|
||||
font: 500 20px Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.obesity-label {
|
||||
margin-top: 32px;
|
||||
}
|
||||
|
||||
.obesity-count {
|
||||
margin-top: 9px;
|
||||
}
|
||||
|
||||
.chart-column {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
line-height: normal;
|
||||
width: 52%;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.chart-column {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.chart-container {
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
gap: 17px;
|
||||
font-size: 12px;
|
||||
color: #6c7588;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.24px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.chart-container {
|
||||
margin-top: 40px;
|
||||
white-space: initial;
|
||||
}
|
||||
}
|
||||
|
||||
.chart-image {
|
||||
width: 140px;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.chart-legend {
|
||||
align-self: start;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.chart-legend {
|
||||
white-space: initial;
|
||||
}
|
||||
}
|
||||
|
||||
.chart-title {
|
||||
color: #384c7f;
|
||||
letter-spacing: 0.4px;
|
||||
align-self: stretch;
|
||||
font: 500 20px Poppins, sans-serif;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.legend-item {
|
||||
display: flex;
|
||||
width: 60px;
|
||||
gap: 8px;
|
||||
padding: 3px 0;
|
||||
}
|
||||
|
||||
.obesity-legend {
|
||||
margin-top: 28px;
|
||||
}
|
||||
|
||||
.normal-legend {
|
||||
margin-top: 5px;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.legend-color {
|
||||
border-radius: 50%;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
}
|
||||
|
||||
.obesity-color {
|
||||
background-color: #f45d78;
|
||||
align-self: start;
|
||||
}
|
||||
|
||||
.normal-color {
|
||||
background-color: #5df4c7;
|
||||
}
|
||||
|
||||
.legend-label {
|
||||
font-family: Nunito Sans, sans-serif;
|
||||
}
|
||||
|
||||
.doctor-total-card {
|
||||
border-radius: 16px;
|
||||
box-shadow: 0 8px 30px 0 rgba(37, 36, 34, 0.07);
|
||||
background-color: #fff;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.doctor-total-header {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
color: #8296c5;
|
||||
font: 400 16px/150% Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.doctor-total-icon {
|
||||
width: 22px;
|
||||
aspect-ratio: 1;
|
||||
object-fit: auto;
|
||||
object-position: center;
|
||||
align-self: start;
|
||||
}
|
||||
|
||||
.doctor-total-label {
|
||||
font-family: Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.doctor-total-value {
|
||||
margin-top: 10px;
|
||||
color: #1c2541;
|
||||
font: 500 30px/80% Poppins, sans-serif;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.user-roles {
|
||||
border-radius: 20px;
|
||||
background-color: #fff;
|
||||
display: flex;
|
||||
margin-top: 21px;
|
||||
width: 100%;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 25px 24px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.user-roles {
|
||||
padding: 0 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.user-roles-header {
|
||||
align-self: stretch;
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
font-size: 16px;
|
||||
color: #0c1e5b;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.32px;
|
||||
justify-content: space-between;
|
||||
padding: 0 2px;
|
||||
}
|
||||
|
||||
.user-roles-title {
|
||||
font-family: Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.user-roles-icon {
|
||||
aspect-ratio: 3.57;
|
||||
object-fit: auto;
|
||||
object-position: center;
|
||||
width: 18px;
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
.user-roles-image {
|
||||
aspect-ratio: 1;
|
||||
object-fit: auto;
|
||||
object-position: center;
|
||||
width: 140px;
|
||||
margin-top: 28px;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.user-roles-legend {
|
||||
display: flex;
|
||||
margin-top: 28px;
|
||||
gap: 20px;
|
||||
font-size: 12px;
|
||||
color: #6c7588;
|
||||
font-weight: 400;
|
||||
white-space: nowrap;
|
||||
letter-spacing: 0.24px;
|
||||
padding: 0 2px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.user-roles-legend {
|
||||
white-space: initial;
|
||||
}
|
||||
}
|
||||
|
||||
.user-role {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.user-role {
|
||||
white-space: initial;
|
||||
}
|
||||
}
|
||||
|
||||
.user-role-indicator {
|
||||
border-radius: 50%;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
}
|
||||
|
||||
.user-role-indicator.patient {
|
||||
background-color: #5df4c7;
|
||||
}
|
||||
|
||||
.user-role-indicator.admin {
|
||||
background-color: #f45d78;
|
||||
}
|
||||
|
||||
.user-role-indicator.doctor {
|
||||
background-color: #8db3ff;
|
||||
}
|
||||
|
||||
.user-role-label {
|
||||
font-family: Nunito Sans, sans-serif;
|
||||
}
|
||||
|
||||
.patient-total-card {
|
||||
border-radius: 16px;
|
||||
box-shadow: 0 8px 30px 0 rgba(37, 36, 34, 0.07);
|
||||
background-color: #fff;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.patient-total-header {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
color: #8296c5;
|
||||
font: 400 16px/150% Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.patient-icon {
|
||||
width: 24px;
|
||||
aspect-ratio: 1;
|
||||
object-fit: auto;
|
||||
object-position: center;
|
||||
}
|
||||
|
||||
.patient-total-label {
|
||||
font-family: Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.patient-total-value {
|
||||
margin-top: 10px;
|
||||
color: #1c2541;
|
||||
font: 500 30px/80% Poppins, sans-serif;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.notification-container {
|
||||
border-radius: 20px;
|
||||
background-color: #fff;
|
||||
max-width: 830px;
|
||||
margin-top: 17px;
|
||||
padding: 25px 28px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.notification-container {
|
||||
padding: 0 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.notification-content {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.notification-content {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
gap: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.notification-details {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
line-height: normal;
|
||||
width: 80%;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.notification-details {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.notification-header {
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.notification-header {
|
||||
margin-top: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.notification-icon {
|
||||
aspect-ratio: 1;
|
||||
object-fit: auto;
|
||||
object-position: center;
|
||||
width: 70px;
|
||||
}
|
||||
|
||||
.notification-text {
|
||||
align-self: start;
|
||||
display: flex;
|
||||
margin-top: 6px;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
flex-basis: 0;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.notification-title {
|
||||
color: #0c1e5b;
|
||||
letter-spacing: 0.32px;
|
||||
font: 600 16px Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.notification-description {
|
||||
color: #888fa7;
|
||||
letter-spacing: 0.26px;
|
||||
margin-top: 12px;
|
||||
font: 400 13px/154% Poppins, sans-serif;
|
||||
}
|
||||
|
||||
.notification-action {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
line-height: normal;
|
||||
width: 20%;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.notification-action {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.notification-button {
|
||||
justify-content: center;
|
||||
border-radius: 10px;
|
||||
background-color: #384c7f;
|
||||
align-self: stretch;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
letter-spacing: 0.28px;
|
||||
width: 100%;
|
||||
margin: auto 0;
|
||||
padding: 8px 16px;
|
||||
font: 500 14px Poppins, sans-serif;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.notification-button {
|
||||
margin-top: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.image-notif{
|
||||
width:100%;
|
||||
padding:15px;
|
||||
}
|
||||
|
||||
|
||||
.image {
|
||||
width: 10%;
|
||||
aspect-ratio: 1.14;
|
||||
object-fit: cover;
|
||||
object-position: center;
|
||||
}
|
||||
|
||||
.search-input {
|
||||
width: 100%;
|
||||
padding: 8px 12px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 5px;
|
||||
box-sizing: border-box;
|
||||
font-size: 14px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.search-input::placeholder {
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
|
||||
.container-patient{
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
gap: 17px;
|
||||
font-size: 12px;
|
||||
background-color: #ffff;
|
||||
color: #6c7588;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.24px;
|
||||
padding: 25px 25px 25px 25px;
|
||||
|
||||
}
|
||||
|
||||
.container-patient {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background-color: #f8f9fa;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.data-table {
|
||||
width: 100%;
|
||||
max-width: 100%; /* Lebar maksimum tabel */
|
||||
background-color: #fff;
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Efek bayangan */
|
||||
}
|
||||
|
||||
.table-header {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 250px) auto; /* Menggunakan grid untuk header */
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.header-cell {
|
||||
padding: 10px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.table-image {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.table-footer {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-top: 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.pagination {
|
||||
display: flex;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.page-number,
|
||||
.previous-button,
|
||||
.next-button {
|
||||
padding: 5px 10px;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 5px;
|
||||
text-decoration: none;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.active-page {
|
||||
background-color: #007bff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
.change-photo-span {
|
||||
font-size: 12px; /* Adjust the font size as needed */
|
||||
}
|
||||
|
||||
.card {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.card-body{
|
||||
width: 100%;
|
||||
}
|
||||
.card-full-width {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.content{
|
||||
margin-top: 20px;
|
||||
margin-left: 100px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,42 @@
|
||||
body {
|
||||
font-family: 'Poppins', sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.container {
|
||||
padding-top: 20px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
padding-left: 250px;
|
||||
flex: 1;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.patient-list {
|
||||
margin: 20px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.list-group-item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.btn-recommendation {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.modal-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.modal-title span {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
.content{
|
||||
margin-top: 20px;
|
||||
margin-left: 100px;
|
||||
}
|
||||
Reference in New Issue
Block a user