Files

35 lines
608 B
Plaintext

page{
background-color: #F5F5F5;
padding: 15px;
width: 100%;
box-sizing: border-box;
}
.list-item{
display: flex;
padding: 15px;
flex-direction: column;
background-color: #fff;
border-radius: 10px;
}
.list-item:not(:first-child){
margin-top: 10px;
}
.list-item .list-time{
color: #999;
font-size: 14px;
}
.list-item .list-files{
margin-top: 5px;
color: #069F99;
font-size: 15px;
display: flex;
flex-direction: column;
}
.list-item .list-files text{
display: block;
width: 100%;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
line-height: 24px;
}