85 lines
1.7 KiB
SCSS
85 lines
1.7 KiB
SCSS
/*
|
|
Authors : initappz (Rahul Jograna)
|
|
Website : https://initappz.com/
|
|
App Name : E-Learning App Template
|
|
This App Template Source code is licensed as per the
|
|
terms found in the Website https://initappz.com/license
|
|
Copyright and Good Faith Purchasers © 2021-present initappz.
|
|
*/
|
|
ion-header {
|
|
ion-toolbar {
|
|
--background: var(--ion-color-primary);
|
|
|
|
ion-icon {
|
|
color: white;
|
|
}
|
|
|
|
ion-title {
|
|
color: white;
|
|
}
|
|
}
|
|
}
|
|
|
|
ion-content {
|
|
.bg_white {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: white;
|
|
padding: 5px;
|
|
box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
|
|
border-radius: 10px;
|
|
margin-bottom: 20px;
|
|
|
|
.list {
|
|
display: flex;
|
|
|
|
.back_image {
|
|
height: 80px;
|
|
width: 80px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.detail {
|
|
margin-left: 10px;
|
|
|
|
.bg_text {
|
|
color: var(--ion-color-primary);
|
|
background-color: #dfe1f3;
|
|
font-size: 12px;
|
|
padding: 2px 5px;
|
|
border-radius: 5px;
|
|
width: 80px;
|
|
text-align: center;
|
|
}
|
|
|
|
.name {
|
|
font-family: 'bold';
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.paid {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 50px;
|
|
padding: 2px 10px;
|
|
border-radius: 5px;
|
|
margin-top: 5px;
|
|
font-size: 14px;
|
|
color: var(--ion-color-primary);
|
|
background-color: #dfe1f3;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
.receipt {
|
|
font-size: 13px;
|
|
background-color: var(--ion-color-primary);
|
|
color: white;
|
|
padding: 1px 7px;
|
|
border-radius: 20px;
|
|
}
|
|
}
|
|
}
|