You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.1 KiB
78 lines
1.1 KiB
2 years ago
|
.wrip-view {
|
||
|
height: 100%;
|
||
|
padding: 0 12px;
|
||
|
}
|
||
|
|
||
|
.task {
|
||
|
padding: 8px;
|
||
|
background-color: #fff;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
.task-item {
|
||
|
padding: 4px 0;
|
||
|
margin: 10px 0;
|
||
|
border-radius: 10px;
|
||
|
position: relative;
|
||
|
z-index: 100;
|
||
|
background-color: #fff;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.task-item-backg {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
background: #77bef0;
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
z-index: -1;
|
||
|
border-radius: 10px 0 0 10px;
|
||
|
}
|
||
|
|
||
|
.task-item-title {
|
||
|
font-family: "楷体";
|
||
|
font-size: 18px;
|
||
|
margin-bottom: 6px;
|
||
|
margin-left: 10px;
|
||
|
}
|
||
|
|
||
|
.task-item-text {
|
||
|
text-align: right;
|
||
|
font-family: "楷体";
|
||
|
font-size: 14px;
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
|
||
|
|
||
|
.title {
|
||
|
background: #fff;
|
||
|
display: inline-block;
|
||
|
border-radius: 4px;
|
||
|
padding: 4px;
|
||
|
margin: 10px 0;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.title::after {
|
||
|
content: "";
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
width: 100vw;
|
||
|
height: 4px;
|
||
|
background: #fff;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
.release-view{
|
||
|
padding: 8px;
|
||
|
background-color: #fff;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
.release-view input{
|
||
|
border: 1px #ccc solid;
|
||
|
border-radius: 4px;
|
||
|
margin: 6px 0;
|
||
|
padding: 4px;
|
||
|
}
|