Skip to content

Instantly share code, notes, and snippets.

View npofopr's full-sized avatar
🙃

Vladislav Altyncev npofopr

🙃
View GitHub Profile
AddDefaultCharset UTF-8
RewriteEngine On
<ifModule mod_expires.c>
# Add correct content-type for fonts & SVG
AddType application/font-woff2 .woff2
AddType image/svg+xml .svg
ExpiresActive On
{
"extends": "stylelint-config-standard",
"rules": {
"indentation": "tab",
"string-quotes": "double",
"no-duplicate-selectors": true,
"color-hex-case": "lower",
"selector-combinator-space-after": "always",
"selector-attribute-quotes": "always",
"declaration-colon-space-before": "never",
$(window).scroll(function() {
var sb_m = 20; // отступ сверху и снизу
var mb = 500; // высота подвала с запасом
var st = $(window).scrollTop();
var sb = $(".sticky-block");
var sbi = $(".sticky-block .inner");
var sb_ot = sb.offset().top;
var sbi_ot = sbi.offset().top;
var sb_h = sb.height();
var h_header = $('header').height();
$('#fullpage').fullpage({
paddingTop: h_header
});
var hf = function(){
var h_header = $('header').height();
var h_footer = $('footer').height();
$('.content').css({
'paddingTop': h_header,
@npofopr
npofopr / post-receive
Created March 30, 2017 15:13 — forked from lemiorhan/post-receive
Post-receive hook to deploy the code being pushed to production branch to a specific folder
#!/bin/bash
target_branch="production"
working_tree="PATH_TO_DEPLOY"
while read oldrev newrev refname
do
branch=$(git rev-parse --symbolic --abbrev-ref $refname)
if [ -n "$branch" ] && [ "$target_branch" == "$branch" ]; then
/* the page should not change width as content is loaded */
body {
overflow-y: scroll;
}
/* block scrolling without losing the scroll bar and shifting the page */
/* add this class when a modal is open */
body.block-scroll {
overflow: hidden;
overflow-y: scroll !important;
@npofopr
npofopr / stylus mixins
Created January 15, 2017 16:08
clearfix, responsive images, breakpoints
// Mixins.
m-nl()
margin 0
padding 0
text-indent 0
list-style none
list-style-position outside
m-cf()
$(document).ready(function() {
$(".toggle-mnu").click(function() {
$(this).toggleClass("on");
$(".main-mnu").slideToggle();
return false;
});
$(".main-footer .toggle-mnu").click(function() {
$("html, body").animate({ scrollTop: $(document).height() }, "slow");
$(function() {
// Preloader
$(window).on( 'load', function() {
setTimeout(function() {
$('body').addClass('is-load');
}, 100);
});
// Scroll Header
{
"enable_tab_scrolling": false,
"fallback_encoding": "Cyrillic (Windows 1251)",
"remember_open_files": true,
"trim_trailing_white_space_on_save": true
"Seti_SB_h_med": true,
"Seti_SB_v_med": true,
"Seti_mouse_wheel_tabswitche": true,