49 lines
No EOL
1.3 KiB
CSS
49 lines
No EOL
1.3 KiB
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(--color-lightest);
|
|
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);
|
|
}
|
|
|
|
&.secondary {
|
|
color: var(--accent-color);
|
|
background: transparent;
|
|
}
|
|
|
|
&.secondary:not(.theme-toggle):hover,
|
|
&.secondary:not(.theme-toggle):active,
|
|
&.secondary:not(.theme-toggle):focus {
|
|
color: var(--accent-color-hover);
|
|
background: transparent;
|
|
}
|
|
} |