Skip to content

Instantly share code, notes, and snippets.

@lggarrison
lggarrison / _breakpoints.scss
Last active April 11, 2017 16:34
Breakpoints Framework
/*==============================================================================
Breakpoints
==============================================================================*/
$breakpoints: (
small: 0,
medium: 640px,
large: 1024px,
@mixin full-width {
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
img {
width: 100%;
@lggarrison
lggarrison / index.html
Last active October 5, 2015 06:18 — forked from tsevdos/index.html
Simple HTML5 template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Really simple HTML5 template</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>