Skip to content

Instantly share code, notes, and snippets.

View brandnewmovementt's full-sized avatar

brandnewmovementt

View GitHub Profile
@brandnewmovementt
brandnewmovementt / CSS: Eric Meyer Reset
Created May 31, 2012 19:22 — forked from danilowm/gist:1070332
CSS: Eric Meyer Reset
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
@brandnewmovementt
brandnewmovementt / gist:2845558
Created May 31, 2012 19:16
HTML: Starting Template
<!doctype html>
<html>
<head>
<meta charset=utf-8>
<title></title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container"></div>
@brandnewmovementt
brandnewmovementt / _rounded.sass
Created April 5, 2012 01:46 — forked from maran/_rounded.sass
CSS: Rounded Corners
@mixin rounded-corner($radius: 5px)
-moz-border-radius: $radius
-webkit-border-radius: $radius
border-radius: $radius
@mixin rounded-top-left-corner($radius: 5px)
-moz-border-radius-topleft: $radius
-webkit-border-top-left-radius: $radius
border-top-left-radius: $radius
@brandnewmovementt
brandnewmovementt / blank-html-template
Created April 5, 2012 01:45 — forked from hubgit/blank-html-template
HTML: Blank Template
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Title</title>
<link rel="stylesheet" href="style.css"/>
<style></style>
<script src="script.js"></script>