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
| /** | |
| * Cool boxes | |
| */ | |
| body { | |
| background: #fff; | |
| } | |
| .pic { | |
| display: block; | |
| padding: 3.5em 1em 0.5em 1em; | |
| margin: 0.3em; |
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
| /** | |
| * Cool Boxes | |
| */ | |
| body { | |
| background: #fff; | |
| } | |
| .pic { | |
| display: inline-block; | |
| padding: 3.5em 1em 0.5em 1em; | |
| margin: 0.3em; |
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 100% height when content has margin problem | |
| */ | |
| html, body { | |
| position: relative; | |
| min-height: 100%; | |
| background: yellow; | |
| margin: 0; | |
| padding: 0.1px; /* needed to prevent the margin problem */ | |
| box-sizing: border-box; |
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 this script to the end of your document that use <input autofocus type="text" /> | |
| * or <input type="text" placeholder="username" /> and it'll plug support for browser | |
| * without these attributes | |
| * Minified version at the bottom | |
| */ | |
| (function () { | |
| function each(list, fn) { | |
| var l = list.length; |
NewerOlder