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
<link rel="shortcut icon" href="img/favicon.ico"> |
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 { | |
font-family: 'Axis'; | |
src: url('../../build/fonts/axis.woff') format('woff'), url('../../build/fonts/axis.woff2') format('woff2'); | |
} |
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
// Пример записи: | |
// $maxWidth: Ширина КОНТЕЙНЕРА, без px!; | |
// Пример подключения: | |
// @include adaptiv-font(Размер текста в макете, размер текста при 320px); | |
$maxWidth: 1200; | |
@mixin adaptiv-font($pcSize, $mobSize) { | |
font-size: #{$pcSize + px}; | |
@media (max-width: #{$maxWidth + px}){ |
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
$(document).ready(function() { | |
$("a.content__button").click(function() { | |
var elementClick = $(this).attr("href") | |
var destination = $(elementClick).offset().top; | |
jQuery("html:not(:animated),body:not(:animated)").animate({ | |
scrollTop: destination | |
}, 800); | |
return false; | |
}); | |
}); |
NewerOlder