Skip to content

Instantly share code, notes, and snippets.

View irishstu's full-sized avatar

Stewart Curry irishstu

View GitHub Profile
@irishstu
irishstu / gist:2718782
Created May 17, 2012 13:06
Boxorder mixin
@mixin boxit ($dir) {
display:box;
display:-moz-box;
display:-webkit-box;
box-orient:$dir;
-moz-box-orient:$dir;
-webkit-box-orient:$dir;
}
@mixin order ($num) {
@irishstu
irishstu / reveal_mq
Created April 11, 2012 09:26
Responsive Zurb Reveal modals
/* Less than 480px */
@media screen and (max-width: 480px) {
.reveal-modal {
visibility: hidden;
top: 40px;
left: 0;
margin-left: 0;
width: 100%;
}
}