1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 05:38:26 -04:00
jarv.is/assets/sass/pages/_videos.scss

43 lines
551 B
SCSS

@charset "UTF-8";
// Video Styles
main#video {
margin: 20px auto;
text-align: center;
p {
font-size: 0.85em;
line-height: 1.5em;
color: #777777;
margin: 20px 10px;
}
a {
font-weight: bold;
}
video {
width: $responsive-width;
height: auto;
font-family: inherit; // for subtitles
}
}
// Responsive
@mixin responsive--videos() {
main#video {
margin: 20px 0;
h1 {
font-size: 1.6em;
padding: 0 15px;
}
video {
width: 100%;
height: auto;
}
}
}