mirror of
https://github.com/scotttomaszewski/obsidian-inline-admonitions.git
synced 2026-07-22 09:30:32 +00:00
35 lines
689 B
CSS
35 lines
689 B
CSS
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
code.iad {
|
|
background-color: var(--tag-background);
|
|
border: var(--tag-border-width) solid var(--tag-border-color);
|
|
border-radius: var(--tag-radius);
|
|
color: var(--tag-color);
|
|
font-size: var(--tag-size);
|
|
font-weight: var(--tag-weight);
|
|
text-decoration: var(--tag-decoration);
|
|
padding: var(--tag-padding-y) var(--tag-padding-x);
|
|
line-height: 1;
|
|
}
|
|
|
|
.iad-setting-row {
|
|
display: flex;
|
|
justify-content: end;
|
|
}
|
|
|
|
.iad-setting-row * {
|
|
margin-left: 0.5em;
|
|
}
|
|
|
|
.iad-sample-editor {
|
|
margin: 0.5em;
|
|
display: inline-block;
|
|
}
|
|
|