mirror of
https://github.com/videojs/video.js.git
synced 2025-01-10 23:30:03 +02:00
f87297b20e
People keep finding the v4 legacy docs at docs.videojs.com/docs and Google keeps positioning them highly in search results. This attempts to lessen that.
68 lines
968 B
CSS
68 lines
968 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;
|
|
}
|
|
|
|
.legacydocsnote {
|
|
background-color: #ffdddd;
|
|
border: 2px solid #ff0000;
|
|
text-align: center;
|
|
margin: 1em auto;
|
|
padding: 1em;
|
|
width: 80%;
|
|
}
|
|
|
|
.legacydocsnote::before {
|
|
content: "⚠️";
|
|
font-size: 200%;
|
|
vertical-align: middle;
|
|
} |