generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathstyles.css
43 lines (34 loc) · 847 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
/*
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.
*/
.prompt-leading {
margin: var(--size-4-1) var(--size-4-3);
}
.prompt-answer {
margin: var(--size-4-3) 0px;
background-color: var(--background-primary-alt);
padding: var(--size-4-3) var(--size-4-3);
border-radius: var(--radius-s);
display: flex;
}
.prompt-subheading {
color: var(--text-muted);
font-size: 0.7em;
font-weight: 600;
letter-spacing: 1px;
padding: 0px 4px;
text-transform: uppercase;
}
.prompt-suggestion-header {
font-weight: var(--font-semibold);
font-size: var(--font-ui-larger);
}
.prompt-suggestion-content {
font-size: var(--font-ui-small);
margin-top: var(--size-4-1);
}
.prompt-suggestion-item {
padding: var(--size-4-2) var(--size-4-3);
}