File tree Expand file tree Collapse file tree 6 files changed +51
-61
lines changed Expand file tree Collapse file tree 6 files changed +51
-61
lines changed Original file line number Diff line number Diff line change 7
7
--color-base-10 : # 272727 ;
8
8
--color-base-15 : # 2a2a2a ;
9
9
--color-base-20 : # 303030 ;
10
- --color-base-30 : # 3d3846 ;
10
+ --color-base-30 : # 303030 ;
11
11
--color-base-35 : # 5e5c64 ;
12
12
--color-base-40 : # 77767b ;
13
13
--color-base-50 : # 9a9996 ;
14
14
--color-base-60 : # c0bfbc ;
15
15
--color-base-70 : # deddda ;
16
16
--color-base-100 : # ffffff ;
17
17
18
- --accent-h : 212 ;
18
+ --accent-h : 213 ;
19
19
--accent-s : 76% ;
20
- --accent-l : 70 % ;
20
+ --accent-l : 55 % ;
21
21
22
22
--color-red : # ed333b ;
23
23
--color-red-rgb : 237 , 51 , 59 ;
Original file line number Diff line number Diff line change 1
1
body {
2
- --italic-color : var (--color-base-60 );
3
- /* italic text is lighter in color */
4
- --bold-weight : var (--font-bold );
5
- /* bold text is bolder */
6
- --link-decoration : none;
7
2
/* internal links are not underlined */
3
+ --link-decoration : none;
4
+
5
+ /* On GNOME, with 'Window frame style' set to 'Native frame'
6
+ * the titlebar blends with the tab bar */
7
+ & .theme-dark .mod-linux {
8
+ --titlebar-background : # 353535 !important ;
9
+ --titlebar-background-focused : # 262626 !important ;
10
+ }
11
+
12
+ & .theme-light .mod-linux {
13
+ --titlebar-background : # f6f5f4 !important ;
14
+ --titlebar-background-focused : # dad6d2 !important ;
15
+ }
8
16
}
9
17
10
18
mjx-container {
11
19
font-size : var (--font-ui-large );
12
- color : var (--color-base-100 );
13
20
}
14
21
15
22
/* Use monospace font in source mode */
@@ -19,17 +26,14 @@ mjx-container {
19
26
font-size : var (--code-size );
20
27
}
21
28
22
- .markdown-embed-title {
23
- display : none;
24
- }
25
-
26
29
.HyperMD-table-row {
27
30
font-size : var (--font-normal ) !important ;
28
31
}
29
32
30
33
/* Syntax highlighting for YAML and MathJax */
31
34
.cm-hmd-frontmatter ,
32
35
.cm-math {
36
+ /* no italics */
33
37
font-style : normal !important ;
34
38
font-size : var (--font-normal );
35
39
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,7 +5,9 @@ body:not(.is-mobile) {
5
5
.workspace-ribbon ,
6
6
.workspace-tab-header-container ,
7
7
.status-bar ,
8
+ .titlebar ,
8
9
.view-header {
9
10
display : none !important ;
10
11
}
12
+
11
13
}
Original file line number Diff line number Diff line change 1
1
/* Turn off all transitions */
2
+ /*
2
3
* {
3
4
transition: none !important;
4
5
}
6
+ */
7
+
8
+ .status-bar {
9
+ display : none;
10
+ }
5
11
6
- /* Turn off cursor blink */
7
- .cm-cursor , .cm-cursorLayer {
12
+ /* Disable cursor blink */
13
+ .cm-cursor ,
14
+ .cm-cursorLayer {
8
15
animation : none !important ;
9
16
}
10
17
11
18
/* https://github.com/kepano/obsidian-hider */
12
- /* Scrollbars only show on hover */
19
+ /* Scrollbars only show on hover (might be tricky to find it) */
13
20
::-webkit-scrollbar {
14
21
visibility : hidden;
15
22
30
37
visibility : initial;
31
38
}
32
39
33
- /* Vault name in the file navigator */
34
- .nav-folder .mod-root > .nav-folder-title .nav-folder-title-content {
35
- display : none;
36
- }
37
-
38
- /* Suggestions, instructions and tooltips */
39
- .suggestion-container .mod-search-suggestion {
40
- display : none;
41
- }
42
-
43
- /*
44
- .prompt-instructions {
45
- display: none;
46
- }
47
-
48
- .tooltip {
49
- display: none;
50
- }
51
- */
52
-
53
- /* Options when no file is open */
54
- .empty-state-action-list {
40
+ .markdown-embed-title {
55
41
display : none;
56
42
}
Original file line number Diff line number Diff line change 6
6
7
7
/* Always center mermaid diagrams and embedded images */
8
8
.mermaid ,
9
- .image-embed {
10
- display : flex;
11
- justify-content : center ;
9
+ .image-embed ,
10
+ . excalidraw-embedded-img {
11
+ margin : auto !important ;
12
12
}
13
13
14
14
/* ![[img.png|right|100]] */
31
31
.markdown-preview-sizer div : nth-of-type (3 ): has (h1 ) * {
32
32
margin-top : 0 !important ;
33
33
}
34
+
35
+ /* Note level class: the width of the note is the screen width */
36
+ /* Use like this:
37
+ ---
38
+ cssclass: fullwidth
39
+ tags: ...
40
+ aliases: ...
41
+ ...
42
+ ---
43
+ */
44
+ .fullwidth {
45
+ --file-line-width : 100% !important ;
46
+ }
47
+
48
+ /* Callouts: Apply uniform margins left and right. Center the icon vertically. */
49
+ div .callout-icon {
50
+ margin : auto 1em auto 0 ;
51
+ }
You can’t perform that action at this time.
0 commit comments