Skip to content

Instantly share code, notes, and snippets.

View jatniel's full-sized avatar
🚀
Dev

Jatniel Guzmán jatniel

🚀
Dev
View GitHub Profile
@jatniel
jatniel / reset_css.css
Created June 29, 2021 14:10
Reset Css
/*
* Reset CSS
* @jatnielguzman
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
@jatniel
jatniel / run_nvm_in_zsh_with_ubuntu.md
Created June 23, 2021 06:36
Run NVM in ZSH with Linux (Ubuntu 20.04)

With Linux (Ubuntu 20.04)

With your favorite editor, you edit ~/.zshrc

nano or vi ~/.zshrc

At the end of the file your add:

#NVM

# ######################################################################
# # CROSS-ORIGIN #
# ######################################################################
# ----------------------------------------------------------------------
# | Cross-origin requests |
# ----------------------------------------------------------------------
# Allow cross-origin requests.
#
@jatniel
jatniel / scrollTopAnimate.js
Created April 23, 2020 11:57
jQuery ScrollTop Animate
$(document).ready(function(){
$('.nav-link').click(function( event ) {
event.preventDefault();
$('html, body').animate({ scrollTop: $($(this).attr('href')).offset().top }, 750);
});
});
@jatniel
jatniel / .gitignore
Created August 31, 2018 11:50 — forked from prestarocket/.gitignore
Gitignore PrestaShop 1.7
# Cache, temp and personal files
/.htaccess
*.log
npm-debug.log.*
.sass-cache/
/cache/*
download/*
/img/*
/log/*