mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 03:16:48 +03:00
43 lines
729 B
SCSS
43 lines
729 B
SCSS
@import '../../common/styles/variables';
|
|
|
|
header {
|
|
font-family: $headers-font;
|
|
font-size: .9em;
|
|
text-transform: uppercase;
|
|
margin: 0 0 12px 0;
|
|
color: $sample-panel-headers-color;
|
|
text-transform: uppercase;
|
|
font-weight: normal;
|
|
}
|
|
|
|
:host > tabs > ul li {
|
|
font-family: $headers-font;
|
|
font-size: .9em;
|
|
border-radius: $border-radius;
|
|
margin: 2px 0;
|
|
padding: 3px 10px 2px 10px;
|
|
color: #8A9094;
|
|
line-height: 1.25;
|
|
color: $sample-panel-headers-color;
|
|
|
|
&.hover {
|
|
color: #ffffff;
|
|
}
|
|
|
|
&.active {
|
|
background-color: #ffffff;
|
|
color: $text-color;
|
|
}
|
|
}
|
|
|
|
:host tabs ul {
|
|
padding-top: 10px;
|
|
}
|
|
|
|
pre {
|
|
overflow-x: auto;
|
|
word-break: break-all;
|
|
word-wrap: break-word;
|
|
white-space: pre-wrap;
|
|
}
|