Skip to content

Instantly share code, notes, and snippets.

@riceguitar
Last active October 16, 2015 22:37
Show Gist options
  • Save riceguitar/ff7d51833d625dbdc009 to your computer and use it in GitHub Desktop.
Save riceguitar/ff7d51833d625dbdc009 to your computer and use it in GitHub Desktop.
Walker Christmas Less
// Media Query Shortcuts //
@tablet: ~"only screen and (min-width: 768px)";
@desktop: ~"only screen and (min-width: 992px)";
@large-desktop: ~"only screen and (min-width: 1200px)";
/* Video Area */
#wcc-tour-video {
background: #000;
.video-banner {
background: @white;
padding: 5px 0;
}
.video-container {
max-width: 1300px;
max-height: 100%;
overflow: hidden;
padding: 0;
margin: 0 auto;
iframe {
display: block;
max-width: 100%;
height: 250px;
@media @tablet {
height: 430px;
width: 100%;
}
@media @desktop {
height: 570px;
}
@media @large-desktop {
max-width: 1200px
height: 720px;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment