Skip to content

Instantly share code, notes, and snippets.

@jnejunior
jnejunior / dabblet.css
Created April 26, 2013 18:43
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body {
background: #f2f2f2;
}
h1 {
color: #000;
text-shadow: 0px 6px 10px #333;
@jnejunior
jnejunior / Preferences.sublime-settings
Created October 1, 2012 22:51
definições do sublime text 2 Jr
{
"auto_complete": true,
"auto_complete_commit_on_tab": true,
"auto_complete_delay": 50,
"auto_complete_selector": "source - comment",
"auto_complete_size_limit": 4194304,
"auto_complete_triggers":
[
{
"characters": "<",
@jnejunior
jnejunior / css
Created October 1, 2012 22:46
CSS reset Eric Meyer
html, body, div, span, applet, object, iframe, table, caption,
tbody, tfoot, thead, tr, th, td, del, dfn, em, font, img, ins,
kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr,
acronym, address, big, cite, code, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend {
vertical-align: baseline;
font-family: inherit;
font-weight: inherit;
font-style: inherit;
@jnejunior
jnejunior / html5
Created October 1, 2012 22:39
template html5
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
</body>
</html>