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
/* @group Radius */ | |
.border-radius (@r: 0){ | |
-webkit-border-radius: @r; | |
-moz-border-radius: @r; | |
border-radius: @r; | |
} | |
.border-top-left-radius(@r: 0){ | |
-webkit-border-top-left-radius:@r; | |
-moz-border-radius-topleft:@r; | |
border-top-left-radius:@r; |
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
/* | |
Form Base Notes | |
-- Drop-down <select> menus are unaffected. | |
*/ | |
input, | |
button, | |
select, | |
textarea { | |
margin: 0; |
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
/* | |
+----------------------------------------------------------------------------------------------------+ | |
| | | |
| TYPOGRIDPHY - TYPOGRAPHICAL AND GRID LAYOUT CSS FRAMEWORK FROM HARRY ROBERTS OF CSS WIZARDRY | | |
| | | |
+-------------------------------------------------+--------------------------------------------------+ | |
| | | | |
| TYPOGRIDPHY IS © COPYRIGHT OF HARRY ROBERTS | v 0.2.0 | | |
| IT IS FREE TO BE USED AND MODIFIED PROVIDED | May 2009 | |
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
/****************************************************************************** | |
* Less CSS Document Structure Base Classes | |
******************************************************************************* | |
Summary: CSS style .classes interfaces to common docuemnt elements | |
with a Less property, a CSS class, to be accessed from othor Less docs. | |
* version: .01; | |
* Author: Lee R Johnson; | |
* Date: 2009-7-28; |
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
body { | |
font-size: 62.5% /* .625 X 16 = 10 */ | |
font-family: Arial, sans-serif; | |
} | |
/* 48px - The quick brown fox jumps over the lazy dog */ | |
.class-for-48px { | |
font-size: 4.8em; /* 48px */ | |
line-height: 1em; /* 48px */ | |
margin-top: 0.5em; | |
margin-bottom: 0em; |
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
// | |
// Rounded Corners | |
// | |
.border-radius(@radius) | |
-moz-border-radius: @radius | |
-webkit-border-radius: @radius | |
border-radius: @radius | |
.border-top-left-radius(@radius) |
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> | |
<html lang=en> | |
<meta charset=utf-8> | |
<title>Valid HTML5 Document - Language English - Encoding UTF-8</title> | |
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 Library + ALL jQuery Tools --> | |
<script src="http://cdn.jquerytools.org/1.2.5/full/jquery.tools.min.js"></script> |
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
var col['ui'] = | |
rotator: { | |
playing: false, | |
toolbar: function(settings) { | |
//TODO: Update to JQuery UI button | |
function createButton(config) { | |
var btn = $('<a />') // LinkButton | |
.attr('href', '#') // + config.label | |
.attr('rel', config.label) // .addClass(config.label) // old CSS support | |
.attr('title', config.label) |
OlderNewer