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-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])? |
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
| <style> | |
| .vertical-align { | |
| display: flex; | |
| align-items: center; | |
| /*align-items: baseline;*/ | |
| justify-content: center; | |
| flex-direction: row; | |
| } | |
| </style> |
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
| $('.pull-down').each(function() { | |
| $(this).css('margin-top', $(this).parent().height()-$(this).height()) | |
| }); |
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="my-container"> | |
| <h1>Heading 1</h1> | |
| </div> | |
| <style> | |
| .my-container { | |
| position: relative; | |
| background: #5C97FF; | |
| overflow: 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
| /*================================================== | |
| = Media Queries = | |
| ==================================================*/ | |
| /*========== Mobile First Method ==========*/ | |
| /* Custom, iPhone Retina */ | |
| @media only screen and (min-width : 320px) { | |
| } |
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
| function unWrapPlaceholder() { | |
| $(this).contents().unwrap(); | |
| } | |
| $(function() { | |
| $("#includedContent").load("b.html", unWrapPlaceholder); | |
| $("#headerContent").load("h.html", unWrapPlaceholder); | |
| $("#footerContent").load("f.html", unWrapPlaceholder); | |
| }); |
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
| <!-- In depth Article @ http://www.html5rocks.com/en/tutorials/shapes/getting-started/ --> | |
| <img class=”element” src=”image.png” /> | |
| <p>Lorem ipsum…</p> | |
| <style> | |
| @supports (shape-outside: circle(50%)) { | |
| /* styles only for browsers which support CSS Shapes */ | |
| .element { | |
| /* Image Based */ | |
| shape-outside: url(image.png); |
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
| .multiplebgs body { | |
| background: | |
| url(top.png) 600px 10px no-repeat, | |
| url(middle.png) 10px 10px no-repeat, | |
| url(bottom.png); | |
| } | |
| .no-multiplebgs body { | |
| background: url(lame-fallback.png) 600px 10px no-repeat; | |
| } |
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
| .no-gutter > [class*='col-'] { | |
| padding-right:0; | |
| padding-left:0; | |
| } |