generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
43 lines (43 loc) · 798 Bytes
/
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
.textgram svg {
max-width: 100%;
padding: 20px;
height: auto;
}
.textgram .diagram line,
.textgram .diagram circle,
.textgram .diagram rect {
stroke: currentColor;
}
.textgram .debug[debug=true] .reserved {
fill: currentColor;
}
.textgram .debug[debug=true] line.grid {
stroke: currentColor;
fill: currentColor;
}
.textgram .debug[debug=true] polygon.inner {
fill: currentColor;
stroke: currentColor;
}
.textgram polygon {
stroke: currentColor;
fill: currentColor;
}
.textgram line.part {
stroke: currentColor;
}
.textgram .debug[debug=true] line.center {
stroke: currentColor;
}
.textgram text:not(.reserved) {
fill: currentColor;
}
.textgram text::selection {
fill: currentColor;
}
.textgram path {
fill: currentColor;
}
.textgram circle {
fill: currentColor;
}