Skip to content

Instantly share code, notes, and snippets.

View triptych's full-sized avatar
💭
Making web things

Andrew Wooldridge triptych

💭
Making web things
View GitHub Profile
@codingdudecom
codingdudecom / 80s-fonts-text-effect-8-css-lazer84-font-halftone-text-effect.markdown
Created July 22, 2019 12:02
80s Fonts Text Effect 8: CSS Lazer84 Font Halftone Text Effect
@codingdudecom
codingdudecom / 80s-fonts-text-effect-7-css-hauser-font-chrome-text-effect.markdown
Last active July 4, 2020 00:06
80s Fonts Text Effect 7: CSS Hauser Font Chrome Text Effect
@codingdudecom
codingdudecom / 80s-fonts-text-effect-6-css-rocket-rinder-font-chrome-text-effect.markdown
Created July 22, 2019 12:00
80s Fonts Text Effect 6: CSS Rocket Rinder Font Chrome Text Effect
@codingdudecom
codingdudecom / 80s-fonts-text-effect-5-css-neon-font-text-effect.markdown
Created July 22, 2019 11:59
80s Fonts Text Effect 5: CSS Neon Font Text Effect
@codingdudecom
codingdudecom / 80s-fonts-text-effect-4-cyberspace-text.markdown
Created July 22, 2019 11:57
80s Fonts Text Effect 4: Cyberspace Text
@codingdudecom
codingdudecom / 80s-fonts-text-effect-3-indelible-text.markdown
Created July 22, 2019 11:52
80s Fonts Text Effect 3: Indelible Text
@codingdudecom
codingdudecom / 80s-fonts-text-effect-1-80s-chrome-text.markdown
Last active May 25, 2023 20:18
80s Fonts Text Effect 1: 80s Chrome Text
@codingdudecom
codingdudecom / 80s-fonts-text-effect-2-neon-road-rage-text.markdown
Last active July 4, 2020 00:05
80s Fonts Text Effect 2: Neon Road Rage Text
@JoeyBurzynski
JoeyBurzynski / 55-bytes-of-css.md
Last active May 29, 2026 14:22
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;
}
@Zertuk
Zertuk / text-box-label-container.gd
Last active December 8, 2025 15:16
godot textbox with typewriter effect, shake, wavy, slow, and colored letters
extends Node2D
var timeToShow = 5
var originalPosition
var waveDelay = 0
var isWavy = false
var wavyDirection = 1
var isShakey = false