84 lines
1.7 KiB
Plaintext
84 lines
1.7 KiB
Plaintext
// ==========================================================================
|
|
// HTML5 Video Player Demo Page
|
|
// ==========================================================================
|
|
|
|
// Reset
|
|
@import "lib/normalize.less";
|
|
// Mixins
|
|
@import "lib/mixins.less";
|
|
|
|
@font-face {
|
|
font-family: "Avenir";
|
|
src: url("../../assets/fonts/AvenirLTStd-Medium.woff2") format("woff2"),
|
|
url("../../assets/fonts/AvenirLTStd-Medium.woff") format("woff"),
|
|
url("../../assets/fonts/AvenirLTStd-Medium.ttf") format("truetype");
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Avenir";
|
|
src: url("../../assets/fonts/AvenirLTStd-Heavy.woff2") format("woff2"),
|
|
url("../../assets/fonts/AvenirLTStd-Heavy.woff") format("woff"),
|
|
url("../../assets/fonts/AvenirLTStd-Heavy.ttf") format("truetype");
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
}
|
|
|
|
// BORDER-BOX ALL THE THINGS!
|
|
// http://paulirish.com/2012/box-sizing-border-box-ftw/
|
|
*, *::after, *::before {
|
|
box-sizing: border-box;
|
|
}
|
|
html {
|
|
font-size: 62.5%;
|
|
}
|
|
body {
|
|
font-family: "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
background: #fff;
|
|
.font-size(16);
|
|
line-height: 1.5;
|
|
text-align: center;
|
|
color: #6D797F;
|
|
}
|
|
h1,
|
|
h2 {
|
|
letter-spacing: -.025em;
|
|
color: #2E3C44;
|
|
margin: 0 0 10px;
|
|
line-height: 1.2;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
h1 {
|
|
.font-size(48);
|
|
}
|
|
h2 {
|
|
.font-size(32);
|
|
margin: 0 0 20px;
|
|
}
|
|
p {
|
|
margin: 0 0 20px;
|
|
}
|
|
header {
|
|
margin: 40px 0;
|
|
|
|
p {
|
|
.font-size(18);
|
|
}
|
|
}
|
|
|
|
.example-audio .player,
|
|
.example-video .player {
|
|
margin: 0 auto 40px;
|
|
|
|
&:fullscreen {
|
|
max-width: none;
|
|
}
|
|
}
|
|
.example-audio .player {
|
|
max-width: 480px;
|
|
}
|
|
.example-video .player {
|
|
max-width: 1200px;
|
|
} |