mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-02-01 11:34:59 +01:00
14 lines
230 B
CSS
14 lines
230 B
CSS
.video-with-timestamps dl {
|
|
display: grid;
|
|
grid-template-columns: max-content auto;
|
|
}
|
|
|
|
.video-with-timestamps dt {
|
|
grid-column-start: 1;
|
|
}
|
|
|
|
.video-with-timestamps dd {
|
|
grid-column-start: 2;
|
|
margin-left: 1em;
|
|
}
|