mirror of
https://github.com/videojs/video.js.git
synced 2025-02-04 11:43:27 +02:00
4dd000c809
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.
53 lines
704 B
CSS
53 lines
704 B
CSS
body {
|
|
color: #333;
|
|
margin: 6em;
|
|
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
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 {
|
|
font-size: 2em;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.5em;
|
|
}
|
|
#top {
|
|
border: none;
|
|
}
|
|
div.indexColumn {
|
|
display: inline-block;
|
|
width: 30%;
|
|
vertical-align: top;
|
|
}
|
|
|
|
@media (max-width: 700px) {
|
|
div.indexColumn {
|
|
display: block;
|
|
width: 100%;
|
|
vertical-align: top;
|
|
}
|
|
|
|
|
|
.indexHeader {
|
|
padding-left: 3em;
|
|
}
|
|
div, .section {
|
|
border: none;
|
|
} |