Skip to content

Instantly share code, notes, and snippets.

View voxain's full-sized avatar
🌠
Writing Shitcode

voxain voxain

🌠
Writing Shitcode
View GitHub Profile
@voxain
voxain / resources.md
Last active April 6, 2023 14:47
Favorite frontend & design resources
@apappas1129
apappas1129 / apple-music-gradient-value.md
Last active February 12, 2026 20:57
Apple Music's gradient value for your 𝓒𝓼𝓼

Apple Music's Gradient Value

background-image: linear-gradient(-45deg, #35C3F3 0%, #8b9fe8 20%, #e681d8 39%, #ffa9a4 76%, #FED2CE 100%);
@JoeyBurzynski
JoeyBurzynski / 55-bytes-of-css.md
Last active July 27, 2026 00:58
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;
}
@gokulkrishh
gokulkrishh / media-query.css
Last active July 19, 2026 21:42
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */