Skip to content

Instantly share code, notes, and snippets.

View chilinaz's full-sized avatar

JT Thurston chilinaz

View GitHub Profile
@chilinaz
chilinaz / box-sizing css
Created February 2, 2014 00:02
Make all elements use the same box-sizing model (Paul Irish).
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*, *:before, *:after {
/* Chrome 9-, Safari 5-, iOS 4.2-, Android 3-, Blackberry 7- */
-webkit-box-sizing: border-box;
/* Firefox (desktop or Android) 28- */
-moz-box-sizing: border-box;
/* Firefox 29+, IE 8+, Chrome 10+, Safari 5.1+, Opera 9.5+, iOS 5+, Opera Mini Anything, Blackberry 10+, Android 4+ */
box-sizing: border-box;
}
@chilinaz
chilinaz / page-head-start
Created September 1, 2014 08:45
page setup head start
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Website Title</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="keywords" content="">
<script> </script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
@chilinaz
chilinaz / CSS Preset Styles
Created September 1, 2014 17:49
css preset styles - starting a project
/* ================================================================
Author
================================================================ */
/* Graphic Design Phoenix
http://www.graphicdesignphx.com
[email protected]
602-688-9360 */
/* ================================================================
Presets
@chilinaz
chilinaz / Google-CDN-Links
Created March 27, 2015 20:47
Google CDN Libraries
We couldn’t find that file to show.
@chilinaz
chilinaz / Sublime Text 3 User Settings
Created May 7, 2015 05:32
Sublime Text 3 User Settings
// My Default User Settings for Sublime Text 3 Mac OS
// Updated: Wed May 6 22:19:58 2015
{
"ignored_packages":
[
"Vintage"
],
"remember_full_screen": true,
"highlight_modified_tabs": true,
"show_full_path": true,