mirror of https://github.com/OpenVidu/openvidu.git
110 lines
1.8 KiB
CSS
110 lines
1.8 KiB
CSS
@import "./reset.css";
|
|
@import "./bootstrap.min.css";
|
|
@import "./bootstrap-card.css";
|
|
@import "./prism.css";
|
|
@import "./ionicons.min.css";
|
|
@import "./compodoc.css";
|
|
@import "./tablesort.css";
|
|
|
|
.title {
|
|
font-weight: bold;
|
|
}
|
|
/* .getting-started {
|
|
display: none;
|
|
} */
|
|
|
|
.language-typescript, .token.attr-name {
|
|
color: #b6e8ff !important;
|
|
}
|
|
.token.keyword {
|
|
color: rgb(165, 119, 196);
|
|
}
|
|
|
|
.token.punctuation {
|
|
color: #ebca5e;
|
|
}
|
|
|
|
.token.constant, .token.tag {
|
|
color: #58b4ff;
|
|
}
|
|
|
|
.token.function {
|
|
color: #f3d398;
|
|
}
|
|
|
|
.language-html .token.punctuation.attr-equals{
|
|
color: #fff !important;
|
|
}
|
|
|
|
.token.tag .token.punctuation {
|
|
color: #dadada;
|
|
}
|
|
|
|
.token.string, .token.attr-value, .token.attr-value .punctuation {
|
|
color: #dfa178;
|
|
}
|
|
|
|
.token.builtin, .token.atrule, .token.class-name {
|
|
color: #61d6a0;
|
|
}
|
|
|
|
.italic {
|
|
font-style: italic;
|
|
}
|
|
.component-link-text {
|
|
padding-top: 5px;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
}
|
|
div>p {
|
|
font-size: 16px;
|
|
}
|
|
|
|
code {
|
|
font-weight: bold;
|
|
padding: 2px;
|
|
}
|
|
|
|
.directive section, .module-graph-container, .card-module>.card-block>p,
|
|
nav a[href*="license.html"],
|
|
nav a[href*="properties.html"],
|
|
nav a[href*="overview.html"],
|
|
nav a[href*="index.html"],
|
|
.component .tab-pane section[data-compodoc="block-accessors"] {
|
|
display: none !important;
|
|
}
|
|
|
|
.card-module {
|
|
min-height: 0;
|
|
}
|
|
|
|
.warn-container, .info-container {
|
|
border-radius: 5px;
|
|
width: 100%;
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.info-container > span, .warn-container >span {
|
|
font-weight: bold;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.warn-container {
|
|
border: 2px solid #ffb600;
|
|
background-color: #FFFBF1;
|
|
}
|
|
|
|
.dark .warn-container {
|
|
background-color: #6b6045;
|
|
}
|
|
|
|
.info-container {
|
|
border: 2px solid #0077ff;
|
|
background-color: #f1feff;
|
|
}
|
|
|
|
.dark .info-container {
|
|
background-color: #556d6e;
|
|
} |