This file contains 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
top: 50%; left: 50%; | |
transform: translate(-50%, -50%); |
This file contains 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
background: linear-gradient(135deg, rgba(255,5,109,1) 0%,rgba(255,5,109,1) 50%, rgba(0,0,0,1) 50%, rgba(0,0,0,1) 100%); |
This file contains 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 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
git add . | |
git commit --amend |
This file contains 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
git commit --amend |
This file contains 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
# создайте новую ветку из текущего состояния master | |
git checkout -b имя-новой-ветки | |
# удаляем коммит из ветки master | |
git checkout master | |
git reset HEAD~ --hard | |
git checkout имя-новой-ветки | |
# ваш коммит теперь живет в новой ветке :) |
This file contains 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
# откатываем последний коммит, но не удаляем изменения | |
git reset HEAD~ --soft | |
git add . | |
git stash | |
# переключаемся на нужную ветку | |
git checkout имя-верной-ветки | |
git stash pop | |
git add . | |
git commit -m "тут ваш комментарий" | |
# теперь изменения в нужной ветке |
This file contains 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
git diff --staged |
This file contains 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
<!--[if lt IE 9]> | |
<script src="libs/html5shiv/es5-shim.min.js"></script> | |
<script src="libs/html5shiv/html5shiv.min.js"></script> | |
<script src="libs/html5shiv/html5shiv-printshiv.min.js"></script> | |
<script src="libs/respond/respond.min.js"></script> | |
<![endif]--> |
This file contains 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
function heightses() { | |
$("header").height("auto").equalHeights(); | |
}heightses(); | |
$(window).resize(function() { | |
heightses(); | |
}); |
OlderNewer