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
/* | |
+----------------------------------------------------------------------------------------------------+ | |
| | | |
| 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
/* | |
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
/* @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; |
NewerOlder