diff options
Diffstat (limited to 'local.css')
-rw-r--r-- | local.css | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -23,7 +23,6 @@ h1 { font-weight: bold } #content { margin: 0 } body.has-sidebar #content { - max-width: 38rem; margin: 0; line-height: 1.5; } @@ -124,10 +123,24 @@ ol.chapters { list-style-type: none; padding: 0; } h1 { margin-top: 2em } .schedule-in-context, .schedule-svg-container { - width: 100%; + max-width: 100%; overflow-x: auto; } video { border: 1px solid gray; } .draft { border: 1px solid red; padding: 10px; background-color: LightPink } svg a.highlight rect { stroke-width: 3px } a.highlight { background-color: yellow } + +.transcript-heading { font-weight: bold } + +.transcript .sticky-video { display: none } +@media only screen and (min-width: 64.063em) { + .transcript .sticky-video { + position: sticky; + top: 0; + display: block; + margin-left: calc(-47vw + 30rem); + width: calc(45vw - 30rem); + float: left; + } +} |