1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-19 12:55:31 -04:00

h1 permalink on video pages & subtitle styling

This commit is contained in:
2019-12-20 11:19:57 -05:00
parent 9ecee6ed60
commit 47016b1109
7 changed files with 26 additions and 9 deletions

View File

@@ -8,6 +8,10 @@ main#video {
h1 {
margin-top: 0;
a {
color: inherit;
}
}
p {
@@ -15,16 +19,21 @@ main#video {
line-height: 1.5;
color: #777777;
margin: 1.25em;
}
a {
font-weight: bold;
a {
font-weight: bold;
}
}
video {
width: $responsive-width;
height: auto;
font-family: inherit; // for subtitles
/* stylelint-disable-next-line selector-pseudo-element-no-unknown */
&::cue {
font-family: inherit;
}
}
}