generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathstyles.css
70 lines (63 loc) · 1.32 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/* the container */
.twohop-links-container {
margin-top: 20px;
}
/* common */
.twohop-links-section:after {
content: "";
display: block;
clear: both;
}
.twohop-links-box {
box-sizing: border-box;
border: 1px solid #224433;
float: left;
padding: 3px;
margin: 8px;
color: #224433;
background-color: antiquewhite;
border-radius: 4px;
overflow: hidden;
}
.twohop-links-box-title {
display: -webkit-box;
overflow: hidden;
/*-webkit-line-clamp: 3;*/
-webkit-box-orient: vertical;
}
.twohop-links-box-preview {
color: #224433;
font-size: 70%;
}
.twohop-links-box img {
margin: auto;
}
/* connected links */
.twohop-links-forward-links .twohop-links-connected-links-header {
background-color: darkkhaki;
}
.twohop-links-back-links .twohop-links-connected-links-header {
background-color: salmon;
}
/* two hop links */
.twohop-links-resolved .twohop-links-twohop-header {
clear: both;
background-color: burlywood;
}
.twohop-links-unresolved .twohop-links-twohop-header {
clear: both;
background-color: dimgrey;
}
/* tags */
.twohop-links-tag-header {
clear: both;
background-color: darkseagreen;
}
/* new links */
.twohop-links-new-links-header {
background-color: palevioletred;
}
/* Remove bottom padding in preview mode */
.markdown-preview-section {
padding-bottom: 10px !important;
}