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-HTML.html
Created April 30, 2014 17:17
Message Box: Demos Compass, Mixins, Variables, Extends
<html>
<body>
<div class="message-box">Hey Something happened</div>
<div class="message-box--success">Yay something worked!</div>
<div class="message-box--error">Warning Something is bad here <a href="#">Details</a></div>
<footer>&copy; 2014 - Someone <a href="#">legal link</a></a> </footer>
</body>
</html>
@finteractive
finteractive / SassMeister-input-HTML.html
Created April 30, 2014 18:26
Compass Vertical Rhythm Demo
<body>
<article>
<h1>Title</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod lacus nec sapien aliquet sollicitudin. Sed varius tempor lacus a varius. Nunc rutrum sollicitudin lectus, eleifend pretium lectus mollis quis. Aliquam suscipit ac nibh vel vehicula. Nam tellus nunc, euismod eu sodales in, feugiat eget justo. Suspendisse non orci a turpis imperdiet placerat sit amet quis nisi. Integer eu posuere dolor, a condimentum sem. Vestibulum rutrum lectus ut sem mollis, et placerat felis semper. Nam eu nulla non ante ullamcorper luctus. Curabitur at adipiscing ligula. Interdum et malesuada fames ac ante ipsum primis in faucibus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque adipiscing tellus et augue elementum auctor. Aliquam a elit commodo, fringilla ligula vel, malesuada augue. Quisque fermentum congue urna ut varius. Morbi ut auctor nibh</p>
</article>
<aside>
<h2>Aside Title</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. uismod lacus ne
@finteractive
finteractive / SassMeister-input-HTML.html
Created May 1, 2014 15:37
Toolkit Gem v2.x - Mini Demo
<html>
<body>
<article>
<div class="youtube-video">
<iframe width="400px" height="300px"
src="https://www.youtube.com/embed/INscMGmhmX4">
</iframe>
</div>
@finteractive
finteractive / layout-2col-rendered.html
Last active August 29, 2015 14:00
Layout Grid (BEM/SMACSS Style)
<div class="l-region-2cols--1-2">
<div class="panel-pane">
<h2 class="panel-title">Tardar Sauce</h2>
<div class="panel-content">Grumpy Cat, real name Tardar Sauce, is a cat and Internet celebrity known for her grumpy facial expression. Her owner Tabatha Bundesen says that her permanently grumpy-looking face is due to feline dwarfism.</div>
</div>
<div class="panel-pane">
<h2 class="panel-title">Tardar Sauce</h2>
<div class="panel-content">Grumpy Cat, real name Tardar Sauce, is a cat and Internet celebrity known for her grumpy facial expression. Her owner Tabatha Bundesen says that her permanently grumpy-looking face is due to feline dwarfism.</div>
@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 August 29, 2015 14:03
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);