Skip to content

Instantly share code, notes, and snippets.

View chilinaz's full-sized avatar

JT Thurston chilinaz

View GitHub Profile
@chilinaz
chilinaz / html5-starter-page
Created March 11, 2013 06:27
html5 starter page
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="style.css">
</head>
<body id="">
@chilinaz
chilinaz / WordPress: Theme Description for styles.css
Last active December 14, 2015 03:39
CSS: WP-Theme-Description
/*
Theme Name: @
Version: 1.0
Theme URI:
Description: @ is a custom WordPress theme created exclusively for @ by <a href="http://www.graphicdesignphx.com">Graphic Design Phoenix</a>. All content, eg. text, graphics, images, etc., are the property of @.
Author: Graphic Design Phoenix
Author URI: http://www.graphicdesignphx.com
Author Contact-Info: Email - <a href="mailto:[email protected]">[email protected]</a> | Phone - 602-688-9360
Tags: [Custom, @, ]
*/
@chilinaz
chilinaz / style.css
Created February 19, 2013 06:37
CSS: Import CSS Files
/* CSS Imported Stylesheets - styles.css */
/* import stylesheets and hide from ie/mac \*/
@import url("css/normalize.css");
@import url("css/screen.css");
@import url("css/ie.css");
/* end import/hide */
@chilinaz
chilinaz / ie.css
Created February 19, 2013 06:29
CSS: Old IE Fixes (mixed bag)
/* Fixes for Internet Explorer CSS - ie.css */
/* png fix for IE6 and lower
------------------------------------ */
* html #selector {
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale src='img/image.png');
background-image: none;
background-repeat: no-repeat;
@chilinaz
chilinaz / group
Created February 19, 2013 06:22
CSS: Self-Clear Floats
/* Self-Clear Float Class */
.group:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
@chilinaz
chilinaz / ir
Created February 19, 2013 06:18
CSS: Alternative Image Replacement
/* Alternative Image Replacement Class */
.ir {
border: 0;
font: 0/0 a;
text-shadow: none;
color: transparent;
background-color: transparent;
}
@chilinaz
chilinaz / ir
Created May 27, 2012 01:46
Image Replacement (Scott Kellum)
.ir {
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
}