forked from pengx17/logseq-dev-theme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
zettelkasten.css
80 lines (76 loc) · 1.93 KB
/
zettelkasten.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
71
72
73
74
75
76
77
78
79
80
a.tag[data-ref="fleeting notes"] {
background: #FFFFFF;
background-size: 100%;
color: #000000;
padding: 2px 5px 2px 5px;
font-size: 13px;
line-height: 1em;
font-weight: 500;
border-radius: 5px 5px 5px 5px;
border-color: #f21da140;
border-style: solid;
border-width: thin;
position: relative;
box-shadow: 0px 1px 3px -1px #f21da140, 0px -1px 5px #DFDFDF;
}
a.tag[data-ref="literature notes"] {
background: #FFFFFF;
background-size: 100%;
color: #000000;
padding: 2px 5px 2px 5px;
font-size: 13px;
line-height: 1em;
font-weight: 500;
border-radius: 5px 5px 5px 5px;
border-color: #215F0040;
border-style: solid;
border-width: thin;
position: relative;
box-shadow: 0px 1px 3px -1px #215F0040, 0px -1px 5px #DFDFDF;
}
a.tag[data-ref="permanent notes"] {
background: #FFFFFF;
background-size: 100%;
color: #FFFFFF;
padding: 2px 5px 2px 5px;
font-size: 13px;
line-height: 1em;
font-weight: 500;
border-radius: 5px 5px 5px 5px;
border-color: inherit;
border-style: solid;
border-width: thin;
position: relative;
box-shadow: 0px 1px 3px -1px inherit, 0px -1px 5px #DFDFDF;
background-image: linear-gradient(90deg, #1DA1F2, #1DB6F2);
}
a.tag[data-ref="relevant notes"] {
background: #FFFFFF;
background-size: 100%;
color: #1DA1F2;
padding: 2px 5px 2px 5px;
font-size: 13px;
line-height: 1em;
font-weight: 500;
border-radius: 5px 5px 5px 5px;
border-color: #000000;
border-style: solid;
border-width: thin;
position: relative;
box-shadow: 0px 1px 3px -1px #000000, 0px -1px 5px #DFDFDF;
}
a.tag[data-ref="reference notes"] {
background: #FFFFFF;
background-size: 100%;
color: #000000;
padding: 2px 5px 2px 5px;
font-size: 13px;
line-height: 1em;
font-weight: 500;
border-radius: 5px 5px 5px 5px;
border-color: #f26e1d40;
border-style: solid;
border-width: thin;
position: relative;
box-shadow: 0px 1px 3px -1px #f26e1d40, 0px -1px 5px #DFDFDF;
}