Skip to content

Instantly share code, notes, and snippets.

@AndreasPlahn
AndreasPlahn / .gitignore
Last active January 31, 2020 10:14
.gitignore global
# ### Basic gitignores examples
#
# Visual studio:
# https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
#
# Jetbrains IDEs:
# https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
#
# React:
# https://github.com/facebook/react/blob/master/.gitignore
@JoeyBurzynski
JoeyBurzynski / 55-bytes-of-css.md
Last active May 6, 2024 10:42
58 bytes of css to look great nearly everywhere

58 bytes of CSS to look great nearly everywhere

When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:

main {
  max-width: 38rem;
  padding: 2rem;
  margin: auto;
}