Skip to content

Instantly share code, notes, and snippets.

View kyledurand's full-sized avatar
👋
🌝

Kyle Durand kyledurand

👋
🌝
View GitHub Profile
@kyledurand
kyledurand / gist:11193171
Last active August 29, 2015 14:00
Importing a web font using @font-face in shopify's liquid
@font-face {
font-family: 'font';
src: url('{{ 'font.eot' | asset_url }}');
src: url('{{ 'font.eot' | asset_url }}?#iefix') format('eot'),
url('{{ 'font.woff' | asset_url }}') format('woff'),
url('{{ 'font.ttf' | asset_url }}') format('truetype'),
url('{{ 'font.svg' | asset_url }}') format('svg');
font-weight: normal;
font-style: normal;
}