View AddJSClass.js
This file contains 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(doc, classToAdd){ | |
doc.className = (doc.className).replace("no-js", classToAdd); | |
})(document.documentElement, "js"); |
View FirefoxOnlyCSS.css
This file contains 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
@-moz-document url-prefix() { | |
h1 { | |
color: red; | |
} | |
} |
View webkit-css.css
This file contains 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
@media screen and (-webkit-min-device-pixel-ratio:0) { | |
/* put webkit CSS here*/ | |
} |
View ie8legendbugfix.css
This file contains 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
/* From http://snipplr.com/view/22523/ */ | |
legend { | |
display: block !important; | |
height: 0; | |
margin: 0; | |
padding: 0; | |
width: 0; | |
visibility: hidden; | |
} |
View docpaderror.txt
This file contains 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
c:\Dev>mkdir test | |
c:\Dev>cd test | |
c:\Dev\test>node --version | |
v0.6.18 | |
c:\Dev\test>npm --version | |
1.1.21 |
View docpad6.0.0.txt
This file contains 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
c:\Dev>mkdir docpad | |
c:\Dev>cd docpad | |
c:\Dev\docpad>docpad --version | |
6.0.7 | |
c:\Dev\docpad>docpad run -d | |
debug: DocPad loaded succesfully | |
→ [2012-06-20 23:12:57.446] [C:\Users\Pat\AppData\Roaming\npm\node_modules\docpad\out\lib\docpad.js] [DocPad.log] |
View checkbox-align.css
This file contains 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
/* Source: http://stackoverflow.com/questions/306252/how-to-align-checkboxes-and-their-labels-consistently-cross-browsers */ | |
/*===== | |
<form> | |
<div> | |
<label><input type="checkbox" /> Label text</label> | |
</div> | |
</form> | |
=======*/ | |
<style type="text/css"> |
View css-triangle.scss
This file contains 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
//==== Simple SCSS mixin to create CSS triangles | |
//==== Example: @include css-triangle ("up", 10px, #fff); | |
@mixin css-triangle ($direction: "down", $size: 20px, $color: #000) { | |
width: 0; | |
height: 0; | |
border-left: $size solid #{setTriangleColor($direction, "left", $color)}; | |
border-right: $size solid #{setTriangleColor($direction, "right", $color)}; | |
border-bottom: $size solid #{setTriangleColor($direction, "bottom", $color)}; | |
border-top: $size solid #{setTriangleColor($direction, "top", $color)}; | |
} |
View placeholder.css
This file contains 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
/* From http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css */ | |
::-webkit-input-placeholder { | |
color: #999; | |
} | |
:-moz-placeholder { | |
color: #999; | |
} |
View repeat.aspx
This file contains 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
////Adding this so I don't forget | |
/* | |
In code-behind | |
var list = GetList(); | |
repeaterId.DataSource = list; | |
repeaterId.DataBind(); | |
*/ | |
<asp:repeater runat="server" id="spiceimages"> | |
<HeaderTemplate> |
OlderNewer