Files
doneit-web/src/app/modals/add-note/add-note.page.scss
T

151 lines
2.5 KiB
SCSS
Raw Normal View History

2023-07-07 12:03:03 +01:00
@import '~src/function.scss';
2021-05-03 20:02:07 +01:00
.header-content{
2021-08-06 11:14:48 +01:00
width: 100% !important;
2021-05-19 12:03:00 +01:00
padding: 30px 20px 0 20px !important;
margin-bottom: 20px !important;
2021-08-06 11:14:48 +01:00
float: left;
2021-05-19 12:03:00 +01:00
}
.header-title{
font-family: Roboto;
2023-07-07 12:03:03 +01:00
font-size: rem(25);
2021-05-19 12:03:00 +01:00
padding: 0;
color:#000;
float: left;
}
2021-08-06 11:14:48 +01:00
/* .content{
overflow: auto !important; */
2021-05-19 12:03:00 +01:00
.ion-item-container-no-border{
2021-08-06 10:39:32 +01:00
margin: 5px 20px 0 20px !important;
2021-05-19 12:03:00 +01:00
padding: 0 !important;
overflow: auto;
}
2021-08-06 10:39:32 +01:00
.list{
overflow: auto !important;
margin: 5px 20px 0 20px !important;
2021-05-19 12:03:00 +01:00
}
2021-08-06 10:39:32 +01:00
2021-05-19 12:03:00 +01:00
.ion-item-class-2{
margin: 0px auto;
}
.ion-icon-class{
2023-07-07 12:03:03 +01:00
width: rem(45);
height: rem(45);
2021-05-19 12:03:00 +01:00
float: left;
padding: 10px;
2023-07-07 12:03:03 +01:00
font-size: rem(25);
2021-05-19 12:03:00 +01:00
}
ion-select{
padding-left: 5px;
margin-left: 0;
}
.ion-input-class{
width: calc(100% - 45px);
2023-07-07 12:03:03 +01:00
height: rem(45);
2021-05-19 12:03:00 +01:00
border: 1px solid #ebebeb;
border-radius: 5px;
padding-left: 5px;
padding-right: 10px;
float: left;
}
2021-07-26 20:46:14 +01:00
2021-05-19 12:03:00 +01:00
.list-people{
width: 256px;
2021-05-03 20:02:07 +01:00
float: left;
2021-05-19 12:03:00 +01:00
2021-05-03 20:02:07 +01:00
}
2021-05-19 12:03:00 +01:00
.add-people{
2023-07-07 12:03:03 +01:00
width: rem(45);
2021-05-19 12:03:00 +01:00
float: right;
overflow: auto;
2023-07-07 12:03:03 +01:00
font-size: rem(25);
2021-05-19 12:03:00 +01:00
}
.list-people-title{
2023-07-07 12:03:03 +01:00
/* font-size: rem(13); */
2021-05-19 12:03:00 +01:00
color: #797979;
}
.attach-document{
2023-07-07 12:03:03 +01:00
font-size: rem(15);
color: var(--title-text-color);
2021-05-19 12:03:00 +01:00
margin: 5px 5px 5px 10px;
padding: 5px;
2021-05-03 20:02:07 +01:00
float: left;
}
2021-05-19 12:03:00 +01:00
.attach-icon{
width: 37px;
2023-07-07 12:03:03 +01:00
font-size: rem(35);
2021-05-19 12:03:00 +01:00
float: left;
}
.attach-title-item{
width: 100%;
2023-07-07 12:03:03 +01:00
font-size: rem(15);
2021-05-19 12:03:00 +01:00
color:#0d89d1;
}
/* SPAN */
.span-left{
float: left;
2023-07-07 12:03:03 +01:00
font-size: rem(15);
2021-05-19 12:03:00 +01:00
}
.span-right{
text-align: right;
float: right;
2023-07-07 12:03:03 +01:00
font-size: rem(13);
2021-05-19 12:03:00 +01:00
}
2021-08-06 10:39:32 +01:00
2021-05-19 12:03:00 +01:00
.container-footer{
margin:0 auto;
overflow: auto;
}
.button-cancel {
2023-07-07 12:03:03 +01:00
width: rem(170);
height: rem(44);
2021-05-03 20:02:07 +01:00
border-radius: 22.5px;
2021-05-19 12:03:00 +01:00
--background: #e0e9ee;
--color: #061b52;
margin:10px;
2021-05-03 20:02:07 +01:00
}
2021-05-19 12:03:00 +01:00
.button-save {
2023-07-07 12:03:03 +01:00
width: rem(170);
height: rem(44);
2021-05-03 20:02:07 +01:00
border-radius: 22.5px;
--background: #42b9fe;
2021-05-19 12:03:00 +01:00
--color:#ffffff;
margin:10px;
2021-05-03 20:02:07 +01:00
}
2021-08-06 11:14:48 +01:00
/* } */
2021-05-19 12:03:00 +01:00
.text-input{
width: 100%;
border: 1px solid #ebebeb;
margin: 0px 15px 15px 0px;
padding: 0 !important;
border-radius: 5px;
}
/* Error Messages */
.error{
color:red;
2023-07-07 12:03:03 +01:00
font-size: rem(12);
2021-05-19 12:03:00 +01:00
font-weight: bold;
padding-bottom: 20px;
}
.span-color{
color:red;
}
.buttons{
display: flex;
2021-07-26 20:46:14 +01:00
width: 100% !important;
2021-05-19 12:03:00 +01:00
justify-content: space-between;
2021-07-26 20:46:14 +01:00
padding: 15px 0 15px 0;
2021-05-19 12:03:00 +01:00
overflow: auto;
2021-07-26 20:46:14 +01:00
}
.ion-input-class-no-height{
border: 1px solid #ebebeb;
border-radius: 5px;
overflow: auto;
margin: 5px 20px 0 20px !important;
}