-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
95 lines (68 loc) · 2.15 KB
/
Copy pathstyles.css
File metadata and controls
95 lines (68 loc) · 2.15 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/* ============================================================
Notelets
Interactive mini-apps embedded directly in Obsidian notes
============================================================ */
/* ------------------------------------------------------------
Notelet container
------------------------------------------------------------ */
.notelet-container {
width: 100%;
height: 100%;
min-height: 600px;
margin: 0;
padding: 0;
overflow: hidden;
background: var(--background-primary);
}
/* ------------------------------------------------------------
Notelet iframe
------------------------------------------------------------ */
.notelet-frame {
display: block;
width: 100%;
height: 80vh;
min-height: 600px;
margin: 0;
padding: 0;
border: 0;
border-radius: 0;
background: var(--background-primary);
}
/* ------------------------------------------------------------
Reading mode
Give Notelets as much horizontal room as possible
------------------------------------------------------------ */
.markdown-preview-view:has(.notelet-container) .markdown-preview-sizer {
max-width: none;
width: 100%;
}
.markdown-preview-view:has(.notelet-container) .markdown-preview-section {
width: 100%;
max-width: none;
}
/* ------------------------------------------------------------
Remove normal paragraph/block spacing around a Notelet
------------------------------------------------------------ */
.markdown-preview-view .notelet-container {
margin-block: 0;
}
/* ------------------------------------------------------------
Focus
Avoid Obsidian/browser focus outlines appearing around the
entire embedded application.
------------------------------------------------------------ */
.notelet-frame:focus {
outline: none;
}
/* ------------------------------------------------------------
Mobile / smaller windows
------------------------------------------------------------ */
@media (max-width: 768px) {
.notelet-container {
min-height: 500px;
}
.notelet-frame {
height: 75vh;
min-height: 500px;
}
}