Skip to content

Instantly share code, notes, and snippets.

@schalkneethling
Created June 8, 2020 03:34
Show Gist options
  • Save schalkneethling/ac49d6ff01a33f41b4fd46b62b9c4e65 to your computer and use it in GitHub Desktop.
Save schalkneethling/ac49d6ff01a33f41b4fd46b62b9c4e65 to your computer and use it in GitHub Desktop.
{
"Font face": {
"scope": "css, scss",
"prefix": "fontface",
"body": [
"@font-face {",
" font-family: \"$1\";",
" font-display: swap;",
" src: url(\"$2\") format(\"woff2\"),",
" url(\"$3\") format(\"woff\");",
" font-weight: normal;",
" font-style: normal;",
"}"],
"description": "@font-face style block"
},
"Visually Hidden": {
"scope": "css, scss",
"prefix": "vishid",
"body": [
".visually-hidden {",
" border: 0;",
" clip: rect(0 0 0 0);",
" height: 1px;",
" margin: -1px;",
" overflow: hidden;",
" padding: 0;",
" position: absolute !important; /* stylelint-disable-line declaration-no-important */",
" width: 1px;",
"}"],
"description": "Hide visually but not from screen readers"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment