Skip to content

Instantly share code, notes, and snippets.

@JamyGolden
JamyGolden / proof.md
Last active June 28, 2024 20:51
Keyoxide proof

$argon2id$v=19$m=512,t=256,p=1$KY90x321GNH0MmE48ETOLA$kZrYxzWDvoVsnvQRTcCWg5ej5i1RIczBYhOGTUMUegc

$bp-xs: 480px;
$bp-sm: 768px;
$bp-md: 992px;
$bp-lg: 1200px;
// Mixin: BreakPoint
@mixin bp($point) {
@if $point == xs {
@media (min-width: $bp-xs) {
@content;
@JamyGolden
JamyGolden / _retina-sprite.scss
Last active December 22, 2015 08:58 — forked from wanderingmatt/_retina-sprite.scss
Retina Sprite. A Compass mixin that applies larger sprite images for retina devices.
// Retina Sprite
// Mixin takes a two sprite maps, one normal and one retina. It then swaps
// out the sprite images, repositions and resizes the images accordingly
//
// Rules
//
// Image names within the sprites should match. For example logo.png should
// exist within both folders. If the image doesn't exist within the retina
// sprite, the image will fallback to the image that does exist.
//