cycat-project-website/_sass/bootstrap/_code.scss

49 lines
1012 B
SCSS
Raw Normal View History

2018-12-09 08:21:01 +01:00
// Inline code
code {
2020-08-23 12:01:06 +02:00
@include font-size($code-font-size);
2018-12-09 08:21:01 +01:00
color: $code-color;
2020-08-23 12:01:06 +02:00
word-wrap: break-word;
2018-12-09 08:21:01 +01:00
// Streamline the style when inside anchors to avoid broken underline and more
a > & {
color: inherit;
}
}
// User input typically entered via keyboard
kbd {
padding: $kbd-padding-y $kbd-padding-x;
2020-08-23 12:01:06 +02:00
@include font-size($kbd-font-size);
2018-12-09 08:21:01 +01:00
color: $kbd-color;
background-color: $kbd-bg;
@include border-radius($border-radius-sm);
@include box-shadow($kbd-box-shadow);
kbd {
padding: 0;
2020-08-23 12:01:06 +02:00
@include font-size(100%);
2018-12-09 08:21:01 +01:00
font-weight: $nested-kbd-font-weight;
@include box-shadow(none);
}
}
// Blocks of code
pre {
display: block;
2020-08-23 12:01:06 +02:00
@include font-size($code-font-size);
2018-12-09 08:21:01 +01:00
color: $pre-color;
// Account for some code outputs that place code tags in pre tags
code {
2020-08-23 12:01:06 +02:00
@include font-size(inherit);
2018-12-09 08:21:01 +01:00
color: inherit;
word-break: normal;
}
}
// Enable scrollable blocks of code
.pre-scrollable {
max-height: $pre-scrollable-max-height;
overflow-y: scroll;
}