generated from Quorafind/Obsidian-Custom-Plugin-Starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
64 lines (52 loc) · 1.15 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
.css-creator.modal-body {
display: flex;
flex-direction: column;
gap: var(--size-4-3);
padding: var(--size-4-1);
margin-bottom: var(--size-4-2);
}
.css-creator.modal-footer {
display: flex;
gap: var(--size-4-2);
justify-content: space-between;
}
button.css-creator-cancel {
background: var(--color-red);
/* filter: brightness(0.9); */
color: var(--color-base-00);
}
textarea.css-creator-textarea {
height: 200px;
overflow: auto;
width: 100%;
}
input.css-creator-input {
border-radius: 4px;
height: 2em;
}
p.css-creator-description {
margin-top: 0 !important;
margin-bottom: var(--size-4-2) !important;
padding-left: var(--size-2-2);
}
h2.css-creator-title {
padding-left: var(--size-2-2);
font-size: larger;
}
.setting-item + .setting-item-heading.css-creator {
font-weight: inherit;
margin-top: 0;
}
.setting-item-heading.css-creator .setting-item-name {
color: var(--color-base-40);
font-size: small;
}
button.btn.btn-tertiary {
/* background: unset; */
box-shadow: unset;
}