@kelvininc/ui-components
Version:
Kelvin UI Components
74 lines (69 loc) • 1.49 kB
CSS
/** HEADINGS **/
/** LABELS **/
/** SPANS **/
/** PARAGRAPHS **/
/** CODE/CONSOLE **/
@property --rotation {
syntax: "<angle>";
initial-value: 0deg;
inherits: false;
}
@keyframes rotate-border {
to {
--rotation: 360deg;
}
}
.shortcuts {
background: var(--kv-neutral-6, #3f3f3f);
display: flex;
justify-content: space-between;
padding: var(--kv-spacing-2x, 8px) var(--kv-spacing-4x, 16px);
user-select: none;
}
.left-items {
display: flex;
gap: var(--kv-spacing-5x, 20px);
}
.group {
display: flex;
align-items: center;
gap: var(--kv-spacing-2x, 8px);
}
.icons {
display: flex;
align-items: center;
gap: var(--kv-spacing, 4px);
}
.label {
color: var(--kv-neutral-4, #bebebe);
font-family: var(--kv-primary-font, "proxima-nova", sans-serif, "Arial");
font-size: 10px;
font-weight: 400;
font-stretch: normal;
font-style: normal;
line-height: 15px;
letter-spacing: normal;
text-transform: none;
}
.icon {
border-radius: 4px;
background: var(--kv-neutral-5, #707070);
color: var(--kv-neutral-2, #e5e5e5);
font-family: var(--kv-primary-font, "proxima-nova", sans-serif, "Arial");
font-size: 10px;
font-weight: 400;
font-stretch: normal;
font-style: normal;
line-height: 15px;
letter-spacing: normal;
text-transform: none;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 20px;
width: 20px;
}
.icon kv-icon {
--icon-color: var(--kv-neutral-2, #e5e5e5);
}