-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
whitenoise-custom.css
80 lines (74 loc) · 1.62 KB
/
whitenoise-custom.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
/* ------------WhiteNoise Custom ------------------- */
/* Custom font sizes */
.Node.is-currentRoot > .Node-self .node-line,
.Node.is-currentRoot > .Node-self.is-heading .node-line,
.Node.is-currentRoot > .Node-self .node-line-strict,
.Node.is-currentRoot > .Node-self.is-heading .node-line-strict {
font-size: 27px;
line-height: 32px;
}
.is-mediumFont .Node-self.is-heading1 .Node-contentContainer {
font-size: 23px;
}
.is-mediumFont .Node-self.is-heading2 .Node-contentContainer {
font-size: 21px;
}
.is-mediumFont .Node-self.is-heading3 .Node-contentContainer {
font-size: 19px;
}
.is-mediumFont .Node-contentContainer {
font-size: 18px;
}
.is-mediumFont .Node-noteContainer {
font-size: 16px;
}
.Pane {
font-size: 18px;
}
.node-backlink-counter {
font-size: 9pt;
}
.DocumentSearch {
font-size: 17px;
width: 400px;
}
.katex {
font: normal 1.1em KaTeX_Main,Times New Roman,serif !important;
line-height: 1.0 !important;
}
/* Reduce sides padding */
.is-desktop .Document-rootNode {
padding-right: 20px;
padding-left: 40px;
}
/* strikethrough everything */
/*
.Node.is-checked .node-time {
color: var(--gray-3);
text-decoration: line-through;
}
*/
/* Hide bookmarks icons */
.BookmarkItem-icon {
display: none;
}
/* Hide folder and file icons */
/*
.DocumentItem-icon,
.FolderItem-icon {
display: none;
}
*/
/* Shrink Images by doing ![](https://.../blah.jpg#75) */
.node-displayed-image[src$="#75"] {
max-width: 75%;
max-height: 75%;
}
.node-displayed-image[src$="#50"] {
max-width: 50%;
max-height: 50%;
}
.node-displayed-image[src$="#25"] {
max-width: 25%;
max-height: 25%;
}