23 lines
440 B
SCSS
23 lines
440 B
SCSS
// NibblePoker.lu CSS - (C) 2023 Bozet Herwin
|
|
|
|
code, .code, kbd {
|
|
font-family: Consolas, "Courier New", monospace;
|
|
}
|
|
|
|
// For large blocks
|
|
code {
|
|
|
|
}
|
|
|
|
// For spans
|
|
.code, kbd {
|
|
border: 1px solid #{$color-unset};
|
|
|
|
// Using '.r-s'
|
|
border-radius: calc(#{$border-base-radius} * 0.75);
|
|
|
|
// Using the middle of '.px-xs' and '.px-s'
|
|
padding-left: calc(#{$border-base-radius} * 0.625);
|
|
padding-right: calc(#{$border-base-radius} * 0.625);
|
|
}
|