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
| ::-webkit-input-placeholder { | |
| color: red; | |
| } | |
| :-moz-placeholder { /* Firefox 18- */ | |
| color: red; | |
| } | |
| ::-moz-placeholder { /* Firefox 19+ */ | |
| color: red; | |
| } | |
| :-ms-input-placeholder { |
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
| @media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi) { | |
| } |
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>document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')</script> |
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
| var targetArea = document.getElementById("target-area"), | |
| p = document.createElement("p"), | |
| snippet = p.createTextNode("This was created with JS."); | |
| targetArea.appendChild(snippet); |
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
| <!--[if lte IE 8]><script src="//ldscdn.org/scripts/other/html5shiv/html5shiv.3.5.min.js"></script><script src="//ldscdn.org/scripts/other/respond/respond1.1.0-2.js"></script><script src="//ldscdn.org/scripts/other/selectivizr/selectivizr1.0.3b-lds1.min.js"></script><link href="//ldscdn.org/scripts/other/respond/respond-proxy.html" id="respond-proxy" rel="respond-proxy" /><link href="images/1x1.gif" id="respond-redirect" rel="respond-redirect" /> <script src="//ldscdn.org/scripts/other/respond/respond.proxy.js"></script><![endif]--> |
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
| <figure class="quote"> | |
| <blockquote>It is the unofficial force—the Baker Street irregulars.</blockquote> | |
| <figcaption>Sherlock Holmes, <cite>Sign of Four</cite></figcaption> | |
| </figure> |
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
| .button-text { | |
| display: inline-block; | |
| padding: 4px 10px; | |
| line-height: 1.3; | |
| text-align: center; | |
| vertical-align: middle; | |
| cursor: pointer; | |
| } |
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
| .lifted-box { | |
| position: relative; | |
| z-index: 1; | |
| } | |
| .lifted { | |
| display: block; | |
| position: relative; | |
| } | |
| .lifted:before, | |
| .lifted:after { |
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
| .flyout { | |
| position: relative; | |
| } | |
| .flyout:before { | |
| content: ''; | |
| display: block; | |
| height: 0; | |
| border: 8px solid transparent; | |
| border-bottom-color: red; | |
| position: absolute; |
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="flyout">Box. Lorem ipsum dolor sit met, consect etur dip * isicing elit, sed do eus mod * temp or incididunt ut labore et dolore magna aliqua.</div> |