-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathview.css
35 lines (35 loc) · 904 Bytes
/
view.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
* @Author : 稻米鼠
* @Date : 2022-11-22 13:18:46
* @LastEditTime : 2022-11-23 16:00:20
* @FilePath : \ob-templates\Dataview\TaskProgress-dataview\view.css
* @Description : 任务完成度
* @HomePage : https://github.com/dmscode/Obsidian-Templates
*/
.dms-task-progress {
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
}
.dms-task-progress-desc {
flex-shrink: 0;
font-size: 12px;
font-weight: 200;
margin-left: 1em;
line-height: 12px;
}
.dms-task-progress-bar {
width: 90%;
height: 8px;
margin: 2px auto;
box-sizing: border-box;
background-color: rgba(128, 128, 128, .1);
border: 1px solid rgba(255, 255, 255, .3);
border-radius: 4px;
flex-grow: 1;
}
.dms-task-progress-bar-inner {
height: 6px;
background-color: rgba(255, 128, 128, .4);
border-radius: 3px;
}