Skip to content

Instantly share code, notes, and snippets.

/*
CSS3 Button Mixins
@author Benjamin "balupton" Lupton {@link http://www.balupton.com}
@author http://www.webdesignerwall.com/demo/css-buttons.html
@version 1.0, April 25 2010
Usage:
.button {
+cssbutton;
}
/******************************************************************************
* 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;
@LeeRJohnson
LeeRJohnson / typogridphy-2.css
Created July 15, 2010 21:05
TYPOGRIDPHY - TYPOGRAPHICAL AND GRID LAYOUT CSS FRAMEWORK FROM HARRY ROBERTS OF CSS WIZARDRY
/*
+----------------------------------------------------------------------------------------------------+
| |
| 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 |
/*
Form Base Notes
-- Drop-down <select> menus are unaffected.
*/
input,
button,
select,
textarea {
margin: 0;
/* @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;