This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="videoWrapper"> | |
<iframe src="" frameborder="0" allowfullscreen></iframe> | |
</div> | |
.videoWrapper | |
position: relative | |
padding-bottom: 56.25% /* 16:9 */ | |
padding-top: 25px | |
height: 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// HTML | |
<!-- BOOKS BEGIN --> | |
<div class="books"> | |
<div class="header thriller">Триллер на ту же тему</div> | |
<div class="books-wrapper"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- ACCORDION BEGINS --> | |
// HTML | |
<div class="accordion"> | |
<section> | |
<a href="#" class="header"> | |
<div class="arrow right-arrow down-arrow"></div>“Высший пафос”. Часть 10</a> | |
<div class="content"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin title-glow | |
-webkit-transition: all 0.5s | |
-moz-transition: all 0.5s | |
transition: all 0.5s | |
-webkit-animation: neon1 1.5s ease-in-out infinite alternate | |
-moz-animation: neon1 1.5s ease-in-out infinite alternate | |
animation: neon1 1.5s ease-in-out infinite alternate | |
&:hover |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// TITLE BEGINS | |
$("h1").textillate({ in : { | |
effect: 'flipInY', | |
callback: function () { | |
$(".char2").addClass('rotate'); | |
} | |
}, | |
initialDelay: 300 | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//AJAX BEGINS | |
$('.buttonsContainer').find('a').on('click', function (e) { | |
e.preventDefault(); | |
cache: false; | |
$('.jumbo').fadeOut(); | |
var attrValue = $(this).attr('href'); | |
switch (attrValue) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ifModule mod_expires.c> | |
# Add correct content-type for fonts | |
AddType application/vnd.ms-fontobject .eot | |
AddType application/x-font-ttf .ttf | |
AddType application/x-font-opentype .otf | |
AddType application/x-font-woff .woff | |
AddType image/svg+xml .svg | |
# Compress compressible fonts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Breakpoints | |
$bp-xxsmall: rem(280); | |
$bp-xsmall: rem(375); | |
$bp-small: rem(425); | |
$bp-medium: rem(768); | |
$bp-large: rem(1024); | |
$bp-xlarge: rem(1440); | |
$bp-xxlarge: rem(2560); | |
// Media Queries |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+font-face('Roboto', "../fonts/Roboto/Roboto-Regular", $file-formats: eot woff ttf) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin video | |
.videoWrapper | |
position: relative | |
padding-bottom: 56.25% /* 16:9 */ | |
padding-top: 25px | |
height: 0 | |
iframe | |
position: absolute | |
top: 0 |