A mixin for writing @font-face rules in SASS.
Create a font face rule. Embedded OpenType, WOFF2, WOFF, TrueType, and SVG files are automatically sourced.
@include font-face(Samplino, fonts/Samplino);
/* | |
* Author: http://stuffandnonsense.co.uk/blog/about/hardboiled_css3_media_queries/ | |
*/ | |
/* Smartphones (portrait and landscape) ----------- */ | |
@media only screen | |
and (min-device-width : 320px) | |
and (max-device-width : 480px) { | |
/* Styles */ | |
} |
Postcode, Suburb, State, Lat, Lan | |
200, Australian National University, ACT, -35.280, 149.120 | |
221, Barton, ACT, -35.200, 149.100 | |
800, Darwin, NT, -12.800, 130.960 | |
801, Darwin, NT, -12.800, 130.960 | |
804, Parap, NT, -12.430, 130.840 | |
810, Alawa, NT, -12.380, 130.880 | |
810, Brinkin, NT, -12.380, 130.880 | |
810, Casuarina, NT, -12.380, 130.880 | |
810, Coconut Grove, NT, -12.380, 130.880 |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
/* | |
* Replace all SVG images with inline SVG | |
*/ | |
//if img has svg, change it! | |
jQuery('img').filter(function() { | |
return this.src.match(/.*\.svg$/); | |
}).each(function(){ | |
var $img = jQuery(this); | |
var imgID = $img.attr('id'); |