This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* KEEP OUR CSS CLEAN | |
Some guidelines to follow: | |
1. Break code down into sections. i.e. =BRANDING, =BODY, = WIDGETX, =WIDGETY, etc. | |
2. Keep your rules alphabetically sorted. | |
3. Only put one selector per line for a block of rules that apply to multiple selectors. | |
4. Indent your rules, only one rule per line. | |
example: | |
element#id, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> | |
<head> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
<title>960.gs Grid</title> | |
<style type="text/css"> | |
#grid { | |
background: rgba(255,255,255,0.1); | |
height: 100%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Fix any absolutely positioned columns if necessary. | |
$(document).ready( function(){ | |
$('.column').each(function(){ | |
var cur = $(this); | |
if(cur.css('position') == 'absolute') { | |
var parent = $(cur.parent().get(0)); | |
if(cur.height() > parent.height()) { | |
parent.css('height',cur.height()); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Handle any drop down navigation systems. | |
$(document).ready(function(){ | |
$('.sub_navigation').each(function() { | |
var menu = $(this); | |
menu.hide(); | |
var parent = $(menu.parent().get(0)); | |
var timeout = false; | |
parent.hover(function(){ | |
if(!timeout && !menu.is(':visible')) { | |
timeout = setTimeout(function(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> | |
<head> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
<title>This is a page SUCKA!</title> | |
<style type="text/css" media="screen"> | |
ul#primary_navigation { | |
display: block; | |
overflow: auto; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Joins multiple assets into a single file. | |
# Just like asset caching in Ruby on Rails | |
# Except we also minify with the yui-compressor! | |
require "rubygems" | |
require "yui/compressor" # sudo gem install -r yui-compressor | |
# Specify paths for your assets. | |
paths = { | |
:js => "javascripts/", | |
:css => "stylesheets/" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* The two rules below would accomplish the same thing. */ | |
div#primary_content p { | |
font-size: 0.875em; | |
} | |
p { | |
font-size: 0.875em; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* How to fake Photoshops 'innershadow' layer effect with CSS3 modules and rgba. */ | |
h1 { | |
background: rgba(255,255,255,.25); | |
border-radius:5px; | |
-o-border-radius:5px; | |
-icab-border-radius:5px; | |
-khtml-border-radius:5px; | |
-moz-border-radius:5px; | |
-webkit-border-radius:5px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery.fn.formtasticCustomRadios: (options) -> | |
defaults: { | |
activeClass: "checked" | |
inactiveClass: "unchecked" | |
customClass: false | |
defaultClass: "custom_radio" | |
rowClass: false | |
spanClass: "radio_button_element" | |
} | |
settings: jQuery.extend(defaults,options) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery.fn.formtasticCustomSelect: (options) -> | |
defaults: { | |
activeClass: "active" | |
containerClass: "custom_select_container" | |
customClass: false | |
defaultClass: "custom_select" | |
dropdownClass: "custom_select_dropdown" | |
inactiveClass: "inactive" | |
indicatorClass: "custom_select_indicator" | |
linkClass: "custom_select_link" |
OlderNewer