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
(function(window, document, undefined){ | |
"use strict"; | |
// create a test element | |
var testElem = document.createElement('test'), | |
docElement = document.documentElement, | |
defaultView = document.defaultView, | |
getComputedStyle = defaultView && defaultView.getComputedStyle, | |
computedValueBug, | |
runit = /^(-?[\d+\.\-]+)([a-z]+|%)$/i, |
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
//----------------------------------------------- | |
// Variables | |
//----------------------------------------------- | |
$ui-corners-cache-buster: true !default; | |
// default widths | |
$ui-corners-corner-height: 10px !default; | |
$ui-corners-corner-width: 10px !default; | |
$ui-corners-side-width: 10px !default; |
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
.box { | |
-moz-box-shadow: 5px 9px 5px 5px rgba(0, 0, 0, 0.75); | |
-webkit-box-shadow: 5px 9px 5px 5px rgba(0, 0, 0, 0.75); | |
-o-box-shadow: 5px 9px 5px 5px rgba(0, 0, 0, 0.75); | |
box-shadow: 5px 9px 5px 5px rgba(0, 0, 0, 0.75); | |
} |
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
h1 { | |
color: #00ff00; | |
filter: progid:DXImageTransform.Microsoft.Blur(pixelradius=2); | |
} |
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
/* multiple backgrounds */ | |
/* Firefox 3.6+, Safari, Chrome, IE 9 */ | |
.box { | |
background: | |
url(corner2-tl.png) left top no-repeat, | |
url(corner2-tr.png) right top no-repeat, | |
url(corner2-br.png) right bottom no-repeat, | |
url(corner2-bl.png) left bottom no-repeat, | |
url(corner-t.png) left top repeat-x, | |
url(corner-b.png) left bottom repeat-x, |
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
#column-a { | |
@include grid-column; // make it a column | |
@include grid(6); // make it 6 columns wide | |
} | |
#column-b { | |
@include grid-column(6); // make it a column, 6 columns wide | |
} | |
#column-c { | |
@include grid-column; // make it a column | |
@include grid-plus(6, -10px); // make it 6 columns wide, minus padding |
NewerOlder