site/_src/_assets/styles/bigchain/_code.scss

124 lines
2.4 KiB
SCSS
Raw Normal View History

2015-12-22 14:57:22 +01:00
//
// Code (inline and block)
// --------------
2017-05-29 21:15:48 +02:00
// bigchaindb.com
2015-12-22 14:57:22 +01:00
//
code,
kbd,
pre,
samp {
font-family: $font-family-monospace;
2017-11-22 13:01:54 +01:00
font-size: .7em; // use em so inline code can be used withing large and small modifiers
2017-04-12 18:49:50 +02:00
hyphens: none;
2015-12-22 14:57:22 +01:00
}
// Inline code
code {
2017-11-22 13:01:54 +01:00
padding: .1rem .3rem;
2015-12-22 14:57:22 +01:00
color: $code-color;
background-color: $code-bg;
border-radius: $border-radius;
}
// User input typically entered via keyboard
kbd {
2017-11-22 13:01:54 +01:00
padding: .1rem .3rem;
2015-12-22 14:57:22 +01:00
color: $kbd-color;
background-color: $kbd-bg;
border-radius: $border-radius-sm;
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
2015-12-22 14:57:22 +01:00
kbd {
padding: 0;
font-size: 100%;
2017-05-31 00:22:14 +02:00
font-weight: $font-weight-bold;
2015-12-22 14:57:22 +01:00
box-shadow: none;
}
}
// Blocks of code
pre {
display: block;
padding: $spacer / 1.5;
2015-12-22 14:57:22 +01:00
margin: 0 0 $spacer;
line-height: $line-height;
word-break: break-all;
word-wrap: break-word;
color: $pre-color;
background-color: $pre-bg;
border-radius: $border-radius;
2017-04-12 18:49:50 +02:00
// make 'em scrollable
overflow: scroll;
-webkit-overflow-scrolling: touch;
max-height: $pre-scrollable-max-height;
2015-12-22 14:57:22 +01:00
// Account for some code outputs that place code tags in pre tags
code {
padding: 0;
font-size: inherit;
color: inherit;
2017-04-12 18:49:50 +02:00
white-space: pre;
overflow-wrap: normal;
word-wrap: normal;
word-break: normal;
overflow: auto;
2015-12-22 14:57:22 +01:00
background-color: transparent;
border-radius: 0;
}
}
//
// Clipboard button
//
.highlight {
position: relative;
.btn--clipboard,
.success__text {
position: absolute;
top: .1rem;
right: .1rem;
z-index: 10;
}
.success__text {
2018-08-28 18:34:30 +02:00
top: $spacer * 3.5;
right: -1.5rem;
font-size: $font-size-xs;
}
}
2018-08-28 18:34:30 +02:00
.highlight__title {
margin-top: 0;
margin-bottom: $spacer / 4;
margin-left: $spacer / 1.5;
font-size: $font-size-sm;
color: $gray-light;
display: inline-block;
}
.btn--clipboard {
padding: 0 $spacer / 2;
box-shadow: none;
background: $brand-main-gray;
color: $brand-main-gray-light;
outline: 0;
svg {
fill: currentColor;
width: $font-size-sm;
height: $font-size-sm;
}
&:hover,
&:focus {
transform: none;
background: lighten($brand-main-gray, 5%);
}
&.success {
background: $brand-success;
}
}