Files
doneit-web/src/app/pages/chat/chat.page.scss
T

134 lines
2.2 KiB
SCSS
Raw Normal View History

2021-03-04 18:50:26 +01:00
ion-content{
--background: transparent;
}
:host{
background: #0782c9;
}
.main-header{
width: 100%; /* 400px */
height: 100%;
font-family: Roboto;
border-top-left-radius: 25px;
border-top-right-radius: 25px;
background-color: #fff;
overflow:hidden;
padding: 30px 20px 0px 20px;
color:#000;
transform: translate3d(0, 1px, 0);
.title-content{
width: 360px;
margin: 0px auto;
overflow: auto;
padding: 0 !important;
background: #fff;
}
.div-title{
padding: 0!important;
float: left;
}
.title{
font-size: 25px;
}
.div-icon{
width: 112px;
float: right;
font-size: 35px;
overflow: auto;
padding: 1px;
}
.div-icon ion-icon{
float: right;
padding-left: 20px;
}
}
.main-content{
2021-03-04 18:50:26 +01:00
width: 100%;
height: 100%;
font-family: Roboto;
margin: 0 auto;
background-color: #fff;
overflow:auto;
padding: 15px 20px 0 20px;
2021-03-04 18:50:26 +01:00
border-top-left-radius: 25px;
border-top-right-radius: 25px;
2020-12-21 16:37:44 +01:00
.iconschatnew-group{
width: 30px;
height: 30px;
object-fit: contain;
margin: 0 5px 0 5px;
}
.iconschatnew-conversation{
width: 30px;
height: 30px;
object-fit: contain;
margin: 0 5px 0 5px;
}
}
.item{
width: 100%;
border-bottom: 1px solid #ebebeb;
overflow: auto;
2020-12-21 16:37:44 +01:00
.item-icon{
width: 40px;
float: left;
.icon{
margin-top: 10px;
font-size: 40px;
}
}
.item-content{
width: 317px;
margin: 0 auto;
float:right
}
.item-title-time{
width: 100%;
overflow: auto;
margin-top: 10px;
}
.item-title{
width: 80%;
float: left;
font-size: 15px;
color: #0d89d1;
}
.item-date{
width: 20%;
float: right;
font-size: 13px;
color: #797979;
text-align: right;
}
.item-description{
font-size: 13px;
color: #000;
}
}
2021-03-04 18:50:26 +01:00
@media only screen and (min-width: 1024px) {
.main-content{
.aside-wrapper{
border: 1px solid red;
justify-content: flex-start !important;
.aside-title{
font-family: Roboto;
font-size: 25px;
text-align: left;
}
}
.aside{
width: 340px;
}
.aside-content{
display: flex !important;
background-color: white;
}
}
}