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
sudo rm -rfv /Library/Caches/com.apple.iconservices.store; sudo find /private/var/folders/ \( -name com.apple.dock.iconcache -or -name com.apple.iconservices \) -exec rm -rfv {} \; ; sleep 3;sudo touch /Applications/* ; killall Dock; killall Finder |
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
background: -moz-radial-gradient(center, ellipse cover, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0) 100%); /* FF3.6-15 */ | |
background: -webkit-radial-gradient(center, ellipse cover, rgba(0,0,0,0.3) 30%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */ | |
background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 30%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ | |
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */ |
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
/* alignement vertical des titres sur fond rayé */ | |
.page-header-container { | |
padding: 100px 30px; | |
position: relative; | |
} | |
.page-header { | |
position: absolute; | |
left: 50%; | |
top: 50%; | |
-webkit-transform: translateY(-50%) translateX(-50%); |
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
.fadeInUp { | |
-webkit-animation: fadeInUp .9s cubic-bezier(0.645, .045, .355, 1) forwards; | |
animation: fadeInUp .9s cubic-bezier(0.645, .045, .355, 1) forwards | |
} | |
@-webkit-keyframes fadeInUp { | |
0% { | |
opacity: 0; | |
-webkit-transform: translateY(10%); | |
transform: translateY(10%) |
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
/* delete local branch */ | |
git branch -d branch_name | |
/* delete remote branch */ | |
git push origin :branch_name | |
/* lister les remotes branches qu'on ne voit pas */ | |
git ls-remote --heads |