Module:Note/styles.css: Difference between revisions
From Amaranth Legacy, available at amaranth-legacy.community
More actions
Content deleted Content added
Tesinormed (talk | contribs) No edit summary |
Tesinormed (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
.module-note-container { |
.module-note-container { |
||
display: flex; |
|||
align-items: center; |
|||
padding: var(--space-sm) var(--space-md); |
|||
margin-top: var(--space-xs); |
|||
margin-bottom: var(--space-md); |
|||
background: var(--background-color-progressive); |
|||
color: var(--color-inverted-primary); |
|||
border-radius: var(--border-radius--medium); |
|||
} |
} |
||
.module-note-icon img { |
.module-note-icon img { |
||
display: block; |
|||
margin-right: var(--space-xs); |
|||
filter: var(--filter-invert-fixed); |
|||
} |
|||
.module-note::selection { |
|||
background-color: var(--color-syntax-orange); |
|||
} |
} |
||
Revision as of 05:05, December 9, 2024
.module-note-container {
display: flex;
align-items: center;
padding: var(--space-sm) var(--space-md);
margin-top: var(--space-xs);
margin-bottom: var(--space-md);
background: var(--background-color-progressive);
color: var(--color-inverted-primary);
border-radius: var(--border-radius--medium);
}
.module-note-icon img {
display: block;
margin-right: var(--space-xs);
filter: var(--filter-invert-fixed);
}
.module-note::selection {
background-color: var(--color-syntax-orange);
}