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
| //removes an item from the page, without affecting page flow | |
| //or causing scrollbars. Much better than display:none or | |
| //visibility:hidden | |
| #content { | |
| position: absolute; | |
| top: -9999px; | |
| left: -9999px; | |
| } |
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
| <link href="all.css" media="all" rel="stylesheet"> | |
| <link href="aural.css" media="aural" rel="stylesheet"> | |
| <link href="braille.css" media="braille" rel="stylesheet"> | |
| <link href="embossed.css" media="embossed" rel="stylesheet"> | |
| <link href="handheld.css" media="handheld" rel="stylesheet"> | |
| <link href="print.css" media="print" rel="stylesheet"> | |
| <link href="projection.css" media="projection" rel="stylesheet"> | |
| <link href="screen.css" media="screen" rel="stylesheet"> | |
| <link href="tty.css" media="tty" rel="stylesheet"> | |
| <link href="tv.css" media="tv" rel="stylesheet"> |
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
| a { | |
| display: block; | |
| background: url(sprite.png) no-repeat; | |
| height: 30px; | |
| width: 250px; | |
| } | |
| a:hover { | |
| background-position: 0 -30px; | |
| } |
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
| <script src="http://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js"></script> | |
| <script type="text/javascript"> | |
| WebFont.load({ | |
| google: { | |
| families: ['Cantarell'] | |
| } | |
| }); | |
| </script> | |
| <style type="text/css"> | |
| .wf-loading h1 { visibility: hidden; } |
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
| font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; | |
| font-weight: 300; |
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
| .blur { | |
| color: transparent; | |
| text-shadow: 0 0 5px rgba(0,0,0,0.5); | |
| } |
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
| <div class="loader"> | |
| <span></span> | |
| <span></span> | |
| <span></span> | |
| </div> | |
| <style> | |
| .loader { | |
| text-align: center; | |
| } |
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
| /***** Selector Hacks ******/ | |
| /* IE6 and below */ | |
| * html #uno { color: red } | |
| /* IE7 */ | |
| *:first-child+html #dos { color: red } | |
| /* IE7, FF, Saf, Opera */ | |
| html>body #tres { color: red } |
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
| <div id="page"> | |
| <div id="content_container"> | |
| <div id="content"> | |
| <p>your content</p> | |
| </div> | |
| </div> | |
| </div> | |
| html,body { | |
| height: 100%; |
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
| /* Mozilla based browsers */ | |
| ::-moz-selection { | |
| background-color: #FFA; | |
| color: #000; | |
| } | |
| /* Works in Safari */ | |
| ::selection { | |
| background-color: #FFA; | |
| color: #000; |