1
0
mirror of https://github.com/videojs/video.js.git synced 2025-04-02 22:25:42 +02:00
Gary Katsevman 4dd000c809
docs: deploy docs using netlify (#4774)
This adds in the legacy docs into the repo and enables automatic deployment via netlify. The netlify-docs.js script will error out the build on netlify on master if we're not on a tagged commit so that it won't redeploy the docs unless there's a new release. If we're not on master or on master with a tagged commit, it will process with the deploy.
Also, this removes the API docs from being published with npm, fixes #4609.
2017-12-04 17:42:07 -05:00

121 lines
1.8 KiB
CSS

body {
color: #333;
margin: 6em;
margin-top: 4em;
margin-right: 3em;
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media (max-width: 700px) {
.member-index {
display: none;
}
.side-nav {
float: none;
}
}
a {
color: #437ABE;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
h1, h2, h3 {
margin-left: -1em;
}
h1 {
border-bottom: 1px #CCC solid;
font-size: 2.5em;
}
h2 {
border-bottom: 1px #DDD solid;
font-size: 2em;
}
h3 {
font-size: 1.5em;
}
#memberIndex h4 {
font-size: 1em;
font-weight: normal;
font-style: italic;
}
div {
border-bottom: 1px #DDD solid;
font-size: 1em;
}
pre {
background-color: #F4F3EC;
font-size: .8em;
margin-bottom: 1.3rem;
padding: .5rem;
padding-left: 1rem;
margin-top: 1rem;
border-left: 5px solid rgb(99,99,99);
-webkit-box-shadow: 5px 5px 10px rgba(192, 192, 192, 1.000);
-moz-box-shadow: 5px 5px 10px rgba(192, 192, 192, 1.000);
box-shadow: 5px 5px 10px rgba(192, 192, 192, 1.000);
}
code {
font-size: 1em;
font-family: source-code-pro, Monaco, Consolas, Menlo, "Lucida Console", monospace;
border: none;
}
table {
border-collapse: collapse;
border: 1px #CCC solid;
padding: 0;
}
th {
background-color: #F4F3EC;
border: 1px #CCC solid;
margin: 0;
padding: .5em;
}
td {
border: 1px #DDD solid;
margin: 0;
padding: .5em;
}
.side-nav {
float: right;
width: 15%;
padding-left: 3em;
margin-left: 2em;
margin-right: 1em;
border: none;
}
.side-nav div {
border: none;
}
.side-nav h2, .side-nav h3 {
margin-left: 0;
}
#main {
width: 70%;
}
div.section {
border: none;
}
.description {
border: none;
}
.deprecated {
color: #990000;
}