Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View WhatIsHeDoing's full-sized avatar

Darren Hickling WhatIsHeDoing

View GitHub Profile

Keybase proof

I hereby claim:

  • I am whatishedoing on github.
  • I am whatishedoing (https://keybase.io/whatishedoing) on keybase.
  • I have a public key ASAii9grZcz_6W5Uz7Hz4tDaubeyIpaARJWICZdbtHbsyQo

To claim this, I am signing this object:

@WhatIsHeDoing
WhatIsHeDoing / gist:3179370
Created July 25, 2012 23:38
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);
@WhatIsHeDoing
WhatIsHeDoing / wordpress_article.css
Created July 8, 2012 11:51
Sample Wordpress Article Styling with CSS
article
{
margin-bottom: 1em;
padding-bottom: 2em;
}
article:not(:last-child)
{
border-bottom: thin solid #000;
}
@WhatIsHeDoing
WhatIsHeDoing / wordpress_article.scss
Created July 8, 2012 11:40
Sample Wordpress Article Styling with SASS
article
{
margin-bottom: 1em;
padding-bottom: 2em;
&:not(:last-child)
{
border-bottom: thin solid #000;
}