mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 08:26:56 +00:00
13 lines
230 B
CSS
13 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;
|
|
}
|