74 lines
1.1 KiB
CSS
74 lines
1.1 KiB
CSS
html, body {
|
|
background: #dfdfdf;
|
|
}
|
|
|
|
.list {
|
|
padding-top: .4rem;
|
|
}
|
|
|
|
.title {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.time {
|
|
font-size: 0.9rem;
|
|
color: rgba(0, 0, 0, 0.7);
|
|
}
|
|
|
|
.project {
|
|
margin-bottom: 0.4rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.more-arrow {
|
|
width: 1rem;
|
|
}
|
|
.default-project {
|
|
display: flex;
|
|
width: 100%;
|
|
padding: 0.9rem 1rem;
|
|
box-sizing: border-box;
|
|
background: #ffffff;
|
|
}
|
|
|
|
|
|
.default-project .left {
|
|
-webkit-flex-grow: 1;
|
|
flex-grow: 1;
|
|
width: 50%;
|
|
}
|
|
|
|
.default-project .right {
|
|
-webkit-flex-shrink: 0;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.default-project .title {
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
}
|
|
|
|
.default-project .content {
|
|
color: #7e7e7e;
|
|
padding-right: 1rem;
|
|
flex-grow: 1;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.default-project .icon-con {
|
|
width: 3rem;
|
|
height: 3rem;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.default-project .icon-con img {
|
|
width: 3rem;
|
|
height: 3rem;
|
|
}
|