forked from haierkeys/obsidian-fast-note-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
83 lines (78 loc) · 1.96 KB
/
styles.css
File metadata and controls
83 lines (78 loc) · 1.96 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
@charset "UTF-8";
.fast-note-sync-ribbon-icon {
animation: rotate 2s linear infinite;
/* 旋转动画:2秒一圈,线性,无限循环 */
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(-360deg);
}
}
.fast-note-sync-settings-tag .setting-item-name {
color: var(--interactive-accent);
}
.fast-note-sync-settings-support .ko-fi-logo {
height: 36px !important;
border: 0px !important;
}
.fast-note-sync-settings-debug {
margin: var(--size-4-2);
text-align: center;
}
.fast-note-sync-settings-debug button {
margin: var(--size-4-2);
}
.fast-note-sync-settings {
padding: 0.75em 0;
border-top: 1px solid var(--background-modifier-border);
}
.fast-note-sync-settings table {
width: 100%;
border: 1px solid var(--background-modifier-border);
margin-bottom: 20px;
}
.fast-note-sync-settings table a {
color: var(--color-blue);
text-decoration: none;
}
.fast-note-sync-settings table a:hover {
text-decoration: underline;
}
.fast-note-sync-settings table th, .fast-note-sync-settings table td {
border: 0 !important;
}
.fast-note-sync-settings table th {
text-align: center;
padding: 8px 10px;
font-size: var(--font-ui-smaller);
background-color: var(--background-secondary);
}
.fast-note-sync-settings table .no-columns-added {
padding: 15px;
text-align: center;
background-color: var(--background-secondary);
}
.fast-note-sync-settings table .no-columns-added p {
margin: 4px;
font-size: 10px;
}
.fast-note-sync-settings table thead {
border-bottom: 1px solid var(--color-base-40) !important;
}
.fast-note-sync-settings table tbody tr {
background-color: var(--background-secondary);
}
.fast-note-sync-settings table tbody tr:nth-child(odd) {
background-color: var(--background-secondary-alt);
}
.fast-note-sync-settings table tbody td {
padding: 4px 8px;
font-size: var(--font-ui-small);
}
.fast-note-sync-settings table tfoot td {
padding: 8px 10px;
}
/*# sourceMappingURL=styles.css.map */