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
/* Add the desktop-hidden class to any HTML tag that contains mobile specific content */ | |
.desktop-hidden { | |
*display:none !important; /* IE6-7 */ | |
} | |
@media \0 screen { | |
.desktop-hidden { | |
display:none !important; /* IE8 only */ |
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
@import "compass"; | |
/** | |
* Mixin scrollbar | |
*/ | |
@mixin scrollbar($size, $primary, $secondary: lighten($primary, 25%)) { | |
::-webkit-scrollbar { | |
width: $size; | |
height: $size; | |
} |
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
<body> | |
<span id="a">red</span> | |
<span id="b">yellow</span> | |
<span id="n">Are you sure you want to start a new game?</span> | |
<span id="w">The %s player won. | |
Do you want to play a new game?</span> | |
<div id="game">It's the <span id="c"></span> player's move. | |
<table id="gameboard"> | |
<tr> | |
<td id="c-1-1"></td> |
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
/* | |
Scoped Media Query Mixins - an element query workaround. | |
@mixin respond-to-all : generates @media () {} | |
@mixin respond-to-screen : generates @media screen and () {} | |
@mixin respond-to-screen-only : generates @media screen only and () {} | |
Accepts the following input : |
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
%display-block-hacked { | |
display: block; | |
*zoom: 1; | |
} | |
%clear-both { | |
clear : both; | |
} | |
%blank-as-table { |
NewerOlder