38 lines
536 B
CSS
38 lines
536 B
CSS
html,body{
|
||
background:#dfdfdf;
|
||
}
|
||
.con .item{
|
||
display:flex;
|
||
display:-webkit-flex;
|
||
align-items: center;
|
||
font-size:1rem;
|
||
box-sizing:border-box;
|
||
justify-content:space-between;
|
||
padding: 1.2rem 2.5rem;
|
||
/* height:3.33rem;
|
||
line-height: 3.33rem; */
|
||
border-bottom: 1px solid #F4F4F4
|
||
|
||
}
|
||
.title{
|
||
width:30%;
|
||
}
|
||
.item-con{
|
||
width:70%;
|
||
}
|
||
.task{
|
||
display:flex;
|
||
display:-webkit-flex;
|
||
align-items: flex-start;
|
||
justify-content:space-between;
|
||
padding: 1.25rem 2.5rem;
|
||
}
|
||
|
||
.task-list{
|
||
padding-bottom:1.25rem;
|
||
}
|
||
|
||
.task-item{
|
||
width:70%;
|
||
}
|