Skip to content

Instantly share code, notes, and snippets.

View YusifKhalilov's full-sized avatar
🎯
Focusing

Yusif Khalilov YusifKhalilov

🎯
Focusing
  • Los Angeles Movers
  • Los Angeles, CA
View GitHub Profile
@samdenty
samdenty / README.MD
Last active June 7, 2024 10:02
VS Code CSS addition to increase readability on file tree.

How to install

Custom CSS plugin

Install the custom CSS plugin, then make a file on your computer that will hold your custom CSS, I like to make one in my home directory called ~/.vscodestyles.css and then add the CSS into it.

Once done, open your command palette and select enable custom CSS and JS

@joshbeckman
joshbeckman / animatedScrollTo.js
Created September 30, 2013 14:51
ScrollTo animation using pure javascript and no jquery
document.getElementsByTagName('button')[0].onclick = function () {
scrollTo(document.body, 0, 1250);
}
function scrollTo(element, to, duration) {
var start = element.scrollTop,
change = to - start,
currentTime = 0,
increment = 20;