20 lines
616 B
SCSS
20 lines
616 B
SCSS
kbd {
|
|
display: inline-block;
|
|
transition-duration: var(--transition);
|
|
transition-property: transform, box-shadow, background-color;
|
|
cursor: pointer;
|
|
box-shadow: inset 0 -2px 0 var(--fg-muted-2), 0 -1px 0 var(--fg-muted-3);
|
|
border-radius: var(--rounded-corner-small);
|
|
background-color: var(--fg-muted-2);
|
|
padding: 0.125rem 0.375rem;
|
|
font-size: 0.8rem;
|
|
line-height: normal;
|
|
|
|
// Small nice thingy, keys can be pressed!
|
|
&:active {
|
|
transform: translateY(2px);
|
|
box-shadow: inset 0 1px 0 var(--fg-muted-2);
|
|
background-color: var(--fg-muted-3);
|
|
}
|
|
}
|