redoc/lib/components/Redoc/redoc.scss

246 lines
4.8 KiB
SCSS
Raw Normal View History

@import '../../common/styles/variables';
:host {
2016-03-02 22:48:55 +03:00
display: block;
box-sizing: border-box;
2016-03-15 00:15:32 +03:00
-webkit-tap-highlight-color: rgba(0,0,0,0);
-moz-tap-highlight-color: rgba(0,0,0,0);
-ms-tap-highlight-color: rgba(0,0,0,0);
-o-tap-highlight-color: rgba(0,0,0,0);
tap-highlight-color: rgba(0,0,0,0);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-smoothing: antialiased;
-webkit-osx-font-smoothing: grayscale;
-moz-osx-font-smoothing: grayscale;
osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
text-size-adjust: 100%;
-webkit-text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
-ms-text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
text-rendering: optimizeSpeed!important;
font-smooth: always;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-size-adjust: 100%;
}
2015-12-26 20:44:39 +03:00
.redoc-wrap {
2016-03-02 22:48:55 +03:00
position: relative;
font-family: $base-font, $base-font-family;
font-size: $em-size;
line-height: $base-line-height;
color: $text-color;
2015-12-26 20:44:39 +03:00
}
2015-11-16 02:15:06 +03:00
side-menu {
2016-03-02 22:48:55 +03:00
display: block;
box-sizing: border-box;
2015-11-16 02:15:06 +03:00
}
2015-12-26 20:44:39 +03:00
methods-list {
2016-03-02 22:48:55 +03:00
display: block;
overflow: hidden;
2015-12-26 20:44:39 +03:00
}
2015-12-20 23:19:56 +03:00
api-info, .side-bar {
2016-03-02 22:48:55 +03:00
display: block;
padding: 10px 0;
2015-11-26 23:06:54 +03:00
}
api-info {
2016-03-02 22:48:55 +03:00
padding: 40px;
2015-11-16 02:15:06 +03:00
}
api-logo {
2016-03-02 22:48:55 +03:00
display: block;
text-align: center;
2016-01-21 18:26:54 +03:00
2016-03-02 22:48:55 +03:00
@media (max-width: $side-menu-mobile-breakpoint) {
display: none;
}
}
2016-01-21 01:09:42 +03:00
[sticky-sidebar] {
2016-03-02 22:48:55 +03:00
width: $side-bar-width;
background-color: $side-bar-bg-color;
overflow-y: auto;
overflow-x: hidden;
@media (max-width: $side-menu-mobile-breakpoint) {
z-index: 1;
width: 100%;
bottom: auto !important;
}
2015-11-16 02:15:06 +03:00
}
2015-12-26 20:44:39 +03:00
#api-content {
2016-03-14 23:27:07 +03:00
margin-left: $side-bar-width;
position: relative;
@media (max-width: $side-menu-mobile-breakpoint) {
padding-top: 3em;
margin-left: 0;
}
2016-01-21 18:26:54 +03:00
}
2016-03-14 23:27:07 +03:00
#api-content:before {
content: "";
background: $samples-panel-bg-color;
height: 100%;
width: $samples-panel-width;
top: 0;
right: 0;
position: absolute;
z-index: -1;
2016-01-21 18:26:54 +03:00
}
2016-03-14 23:27:07 +03:00
@media (max-width: 1100px) {
#api-content:before {
display: none;
}
2015-11-16 02:15:06 +03:00
}
/* global redoc styles */
2016-03-02 22:48:55 +03:00
@for $index from 1 through 5 {
:host h#{$index}{
margin-top: 0;
font-family: $headers-font, $headers-font-family;
color: $headers-color;
font-weight: $headers-font-weight;
}
}
:host {
h1 { font-size: $h1; }
h2 { font-size: $h2; }
h3 { font-size: $h3; }
h4 { font-size: $h4; }
h5 { font-size: $h5; }
p {
font-family: $base-font, $base-font-family;
2016-03-08 23:03:05 +03:00
font-weight: $base-font-weight;
2016-03-02 22:48:55 +03:00
margin: 0;
margin-bottom: 1em;
line-height: $base-line-height;
}
a {
text-decoration: none;
color: $primary-color;
}
p > code {
color: $red;
border: 1px solid rgba(38,50,56,0.1);
}
}
footer {
text-align: right;
padding: 10px;
font-size: 15px;
background-color: white;
2016-03-02 22:48:55 +03:00
strong {
font-size: 18px;
color: $headers-color;
}
}
2016-03-02 22:48:55 +03:00
/* markdown elements */
:host .redoc-markdown-block {
2016-03-02 22:48:55 +03:00
pre {
font-family: Courier, monospace;
white-space: pre-wrap;
background-color: rgba(38,50,56,0.04);
padding: 12px 14px 15px 14px;
overflow-x: auto;
line-height: normal;
border-radius: $border-radius;
border: 1px solid rgba(38,50,56,0.1);
code {
background-color: transparent;
&:before, &:after {
content: none;
}
}
}
code {
2016-03-02 22:48:55 +03:00
font-family: Courier, monospace;
background-color: rgba(38,50,56,0.04);
padding: 0.1em 0 0.2em 0;
font-size: 1em;
border-radius: $border-radius;
&:before, &:after {
letter-spacing: -0.2em;
content: "\\00a0";
}
}
p:last-of-type {
2016-03-14 22:29:27 +03:00
margin-bottom: 0;
2016-03-02 22:48:55 +03:00
}
blockquote {
margin: 0;
margin-bottom: 1em;
padding: 0 15px;
color: #777;
border-left: 4px solid #ddd;
}
img {
max-width: 100%;
box-sizing: content-box;
}
ul, ol {
padding-left: 2em;
margin: 0;
margin-bottom: 1em;
}
table {
display: block;
width: 100%;
overflow: auto;
word-break: normal;
word-break: keep-all;
border-collapse: collapse;
border-spacing: 0;
margin-top: 0.5em;
margin-bottom: 0.5em;
}
table tr {
background-color: #fff;
border-top: 1px solid #ccc;
&:nth-child(2n) {
background-color: #f8f8f8;
}
}
table th, table td {
padding: 6px 13px;
border: 1px solid #ddd;
}
table th {
text-align: left;
font-weight: bold;
}
}