mirror of
https://github.com/zadam/trilium.git
synced 2025-12-13 02:44:24 +01:00
20 lines
450 B
CSS
20 lines
450 B
CSS
a.button {
|
|
display: block;
|
|
background-color: var(--brand-1);
|
|
padding: 0.5em 1em;
|
|
border-radius: 6px;
|
|
color: var(--brand-foreground-color);
|
|
text-decoration: none;
|
|
text-align: center;
|
|
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
|
|
|
|
&.outline {
|
|
border: 1px solid var(--brand-1);
|
|
color: var(--brand-1);
|
|
background-color: transparent;
|
|
}
|
|
|
|
.text {
|
|
vertical-align: middle;
|
|
}
|
|
} |