redoc/lib/components/RequestSamples/request-samples.scss

82 lines
1.4 KiB
SCSS
Raw Normal View History

2016-05-06 00:48:41 +03:00
@import '../../shared/styles/variables';
2016-01-31 20:37:51 +03:00
2016-07-17 19:44:36 +03:00
:host {
overflow: hidden;
display: block;
2016-07-17 19:44:36 +03:00
}
2016-07-17 18:07:51 +03:00
.action-buttons {
opacity: 0;
transition: opacity 0.3s ease;
transform: translateY(100%);
2016-11-28 11:18:00 +03:00
z-index: 3;
position: relative;
height: 2em;
line-height: 2em;
padding-right: 10px;
text-align: right;
margin-top: -1em;
2016-07-17 18:07:51 +03:00
> span > a {
padding: 2px 10px;
color: #ffffff;
cursor: pointer;
&:hover {
2016-11-28 11:18:00 +03:00
background-color: lighten($black, 15%);
2016-07-17 18:07:51 +03:00
}
}
}
.code-sample:hover > .action-buttons {
opacity: 1;
}
2016-01-31 20:37:51 +03:00
header {
font-family: $headers-font;
font-size: $h5;
text-transform: uppercase;
margin: 0;
color: $sample-panel-headers-color;
text-transform: uppercase;
font-weight: normal;
2016-11-28 11:18:00 +03:00
margin-top: 20px;
2016-01-31 20:37:51 +03:00
}
2016-09-02 23:18:31 +03:00
:host /deep/ > tabs > ul li {
font-family: $headers-font;
font-size: .9em;
border-radius: $border-radius;
margin: 2px 0;
padding: 3px 10px 2px 10px;
2016-11-23 02:23:32 +03:00
line-height: 16px;
color: $sample-panel-headers-color;
2016-01-31 20:37:51 +03:00
&:hover {
background-color: rgba(white, .1);
color: #ffffff;
}
&.active {
background-color: #ffffff;
color: $text-color;
}
2016-01-31 20:37:51 +03:00
}
2016-09-02 23:18:31 +03:00
:host /deep/ tabs ul {
2016-03-14 22:29:27 +03:00
padding-top: 10px;
2016-01-31 20:37:51 +03:00
}
.code-sample pre {
overflow-x: auto;
word-break: break-all;
word-wrap: break-word;
white-space: pre-wrap;
margin-top: 0;
overflow-x: auto;
padding: 20px;
border-radius: 4px;
background-color: #222d32;
margin-bottom: 36px;
2016-01-31 20:37:51 +03:00
}