37 lines
No EOL
1,021 B
CSS
37 lines
No EOL
1,021 B
CSS
@import url('./tab-buttons.css');
|
|
@import url('./text-toggle.css');
|
|
|
|
button,
|
|
.button {
|
|
appearance: none;
|
|
border: none;
|
|
|
|
& + hr {
|
|
margin-top: 0;
|
|
}
|
|
|
|
&:not(.theme-toggle) {
|
|
border: 2px solid var(--accent-color);
|
|
border-radius: var(--border-radius-full);
|
|
padding: var(--spacing-xs) var(--spacing-md);
|
|
cursor: pointer;
|
|
font-size: var(--font-size-base);
|
|
font-weight: var(--font-weight-bold);
|
|
line-height: var(--line-height-base);
|
|
white-space: nowrap;
|
|
color: var(--text-color-inverted);
|
|
background-color: var(--accent-color);
|
|
appearance: none;
|
|
transition-property: border;
|
|
}
|
|
|
|
&:not(.theme-toggle, .active):hover,
|
|
&:not(.theme-toggle, .active):active,
|
|
&:not(.theme-toggle, .active):focus,
|
|
&:not(.theme-toggle, .active):focus-within {
|
|
background-color: var(--accent-color-hover);
|
|
border-color: var(--accent-color-hover);
|
|
transition-timing-function: var(--transition-ease-in-out);
|
|
transition-duration: var(--transition-duration-default);
|
|
}
|
|
} |