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
| window.setTimeout( | |
| function() { | |
| }, | |
| 1000 | |
| ); |
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
| <p>News:</p> | |
| <article> | |
| <header> | |
| <h1 class="entry-title"><a href="/news/hey-look-it-s-news/">Sample News Story</a></h1> | |
| <h2 class="publish-info"><time class="pubdate" datetime="2010-08-31T10:00:00-05:00"><b>Published:</b> August 31, 2010</time></h2> | |
| <h3 class="author"><b>Author:</b> Erik Runyon</h3> | |
| </header> | |
| </article> | |
| <p>Events:</p> |
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
| .truncate { | |
| width: 250px; | |
| white-space: nowrap; | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| } |
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
| .container { | |
| max-width: 1000px; | |
| margin: 1em auto; | |
| } |
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 { | |
| /* positioning */ | |
| position: absolute; | |
| z-index: 10; | |
| top: 0; | |
| left: 0; | |
| display: inline-block; | |
| overflow: hidden; | |
| width: 100px; | |
| padding: 10px; |
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-list a { | |
| display: block; | |
| padding: 5px 0; | |
| line-height: 1.4; | |
| } |
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> |
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
| .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
| .button-text { | |
| display: inline-block; | |
| padding: 4px 10px; | |
| line-height: 1.3; | |
| text-align: center; | |
| vertical-align: middle; | |
| cursor: pointer; | |
| } |