forked from jamiebrynes7/obsidian-todoist-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
56 lines (46 loc) · 916 Bytes
/
styles.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
.todoist-query-title {
display: inline;
}
.todoist-refresh-button {
display: inline;
margin-left: 8px;
float: right;
}
.todoist-refresh-spin {
animation: spin 1s linear infinite;
}
@-webkit-keyframes spin {
100% {
-webkit-transform: rotate(360deg);
}
}
.task-metadata {
margin-left: 30px;
}
.task-calendar-icon,
.task-project-icon,
.task-labels-icon {
vertical-align: middle;
height: 17px;
width: 17px;
}
.task-date.task-overdue {
color: var(--text-error);
}
.todoist-project .todoist-project {
margin-left: 30px;
}
.todoist-error {
background-color: rgb(var(--background-modifier-error-rgb), 0.5);
border: 1px solid var(--background-modifier-error);
padding: 0 10px 20px 10px;
margin-top: 20px;
}
.todoist-success {
border: 1px solid var(--background-modifier-border);
padding: 0 10px 20px 10px;
margin-top: 20px;
}
.todoist-task-content {
display: inline;
}