Skip to content

Instantly share code, notes, and snippets.

View WhatIsHeDoing's full-sized avatar

Darren Hickling WhatIsHeDoing

View GitHub Profile
@WhatIsHeDoing
WhatIsHeDoing / .editorconfig
Created October 22, 2025 20:25
My base EditorConfig settings
# EditorConfig is awesome: http://EditorConfig.org
# This is the top-most EditorConfig file.
root = true
# All files.
[*]
charset = utf-8
end_of_line = lf
indent_style = space
@WhatIsHeDoing
WhatIsHeDoing / custom-fonts.scss
Last active October 22, 2025 20:23
Embedding and Using Custom Fonts with SASS
/*
* _mixins.scss
*/
$font_dir: '../fonts/';
/* _simple-font-url('Chunkfive', 'eot'); */
@function _simple-font-url($name, $extension)
{
@return url($font_dir + $name + '-webfont.' + $extension);