diff options
Diffstat (limited to 'local.css')
-rw-r--r-- | local.css | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -123,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; + } +} |