generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
56 lines (49 loc) · 1.41 KB
/
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
/* styles.css */
.folder-notes-style {
display: block;
margin: 0px;
padding: 0px;
cursor: pointer;
color: var(--text-small);
text-decoration: none;
font-size: var(--font-ui-medium);
/* font-family: var(--font-interface-theme); */
line-height: var(--line-height-tight);
}
.current-file {
color: var(--text-accent);
padding-top: 0.3em;
padding-bottom: 0.3em;
background-color: var(--color-base-00);
/* background-color: var(--text-selection); */
/* background-color: var(--text-highlight-bg); */
font-size: var(--font-ui-larger);
/* font-family: var(--font-interface-theme); */
font-weight: var(--font-bold)
}
.basic-heading {
/* color: var(--text-normal); */
/* color: var(--italic-color); */
/* Add a little indicator prepend */
padding-left: 1em;
padding-top: 0.1em;
padding-bottom: 0.1em;
font-size: var(--font-ui-small);
/* font-family: var(--font-interface-theme); */
}
.extra-heading-style {
color: var(--text-accent);
padding-left: 1em;
padding-top: 0.1em;
padding-bottom: 0.1em;
font-size: var(--font-ui-medium);
/* background-color: var(--color-base-00); */
/* font-family: var(--font-interface-theme); */
}
.hover-style-file {
background-color: var(--interactive-hover);
}
p.hover-style-heading {
/* color: var(--interactive-normal); */
background-color: var(--interactive-hover);
}