Skip to content

Instantly share code, notes, and snippets.

View finteractive's full-sized avatar

Aidan Foster finteractive

View GitHub Profile
@finteractive
finteractive / SassMeister-input.scss
Created May 1, 2014 21:32
Call To Action Partial in BEM
// ----
// Sass (v3.3.6)
// Compass (v)
// Breakpoint (v)
// ----
/// INITIALIZE SOME VARIABLES THAT WOULD NORMALLY
// BE IN EXTERNAL FILES
//
// mytheme/sass/components/_call-to-action.scss
@finteractive
finteractive / breakpoint-input.html
Last active August 29, 2015 14:00
Breakpoint Mixin
<div></div>
// ----
// Sass (v3.3.8)
// Compass (v1.0.0.alpha.19)
// ----
$star-width: 40px;
$star-height: 40px;
$star-margin: 10px;
// default width to derive ratios from:
@finteractive
finteractive / SASSToronto-101.md
Last active March 22, 2025 17:28
SASS Toronto 101 Meetup

#Intro - Get to know the group#

  • What's your level of CSS experience
  • Do you know any programming languages?
  • What's the most complex thing you've done with SASS

##How the meetup will Work##

  • Each Meetup will be targeted to a specific skill level (Basic/Advanced) ideally with some hands-on time in sassmeister
  • The meetup will start with a mini-demo of something at the opposite skill level of main content
@finteractive
finteractive / SassMeister-input.scss
Last active August 29, 2015 14:03
Simple Nesting
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
.box {
color: red;
.title {
font-size: 2em;
@finteractive
finteractive / SassMeister-input.scss
Created July 23, 2014 03:49
Generated by SassMeister.com.
// ----
// Sass (v3.3.10)
// Compass (v1.0.0.alpha.20)
// ----
$green-dark: rgb(8,16,8);
$green-medium: rgb(35,104,21);
$green-light: rgb(58,177,55);
$blue-dark: rgb(8,60,89);
@finteractive
finteractive / SassMeister-input.scss
Created July 24, 2014 17:09
Generated by SassMeister.com.
// ----
// Sass (v3.3.10)
// Compass (v1.0.0.alpha.20)
// ----
//////////////////////////////
// Message Component Variable Defaults used in mixins
//////////////////////////////
$message-padding: 1em !default;
@finteractive
finteractive / SassMeister-input-HTML.html
Created August 11, 2014 05:27
Generated by SassMeister.com.
<main>Stuff here</main>
@finteractive
finteractive / SassMeister-input-HTML.html
Created August 11, 2014 05:30
Generated by SassMeister.com.
<main>Stuff here</main>
@finteractive
finteractive / SassMeister-input-HTML.html
Last active August 29, 2015 14:05
Singularity Demo - Step 2 - Basic 960 inspired grid
<div class="wrapper">
<header>Header</header>
<nav>Menu Here</nav>
<main>Main Article</main>
<aside> Related stuff</aside>
<footer>Footer Bar</footer>