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
| * {margin: 0; padding: 0; box-sizing: border-box; position: relative} | |
| html, body { | |
| height:100%; | |
| color: #222; | |
| font-family: sans-serif; | |
| } | |
| .left, .right, .center { | |
| 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
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; /* paulirish.com/2012/box-sizing-border-box-ftw/ */ | |
| position: relative; | |
| } | |
| 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
| * {margin: 0; padding: 0; box-sizing: border-box; position: relative} | |
| html, body { | |
| height:100%; | |
| } | |
| body{ | |
| font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; | |
| background: #A3BADC url(../resources/landscape.jpg) no-repeat center left; | |
| } |
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
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; /* paulirish.com/2012/box-sizing-border-box-ftw/ */ | |
| position: relative; | |
| } | |
| 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
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; /* paulirish.com/2012/box-sizing-border-box-ftw/ */ | |
| position: relative; | |
| } | |
| 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
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; /* paulirish.com/2012/box-sizing-border-box-ftw/ */ | |
| position: relative; | |
| } | |
| body { | |
| width: 440px; | |
| margin: 5% 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
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; /* paulirish.com/2012/box-sizing-border-box-ftw/ */ | |
| position: relative; | |
| } | |
| body {text-align: center; background: lightskyblue; color: white} | |
| .transform { |
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
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; /* paulirish.com/2012/box-sizing-border-box-ftw/ */ | |
| position: relative; /* .link and .right-box needs this. I just added it here for brevity. */ | |
| } | |
| .link-box { | |
| float: left; | |
| background: #f5f5f5; |
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
| html, body {height: 100%} | |
| .container { | |
| display: inline-block; | |
| /* visual purposes */ | |
| height: 100%; | |
| width: 100%; | |
| background: url('https://dl.dropbox.com/u/32750720/works/responsify%20the%20web/wwe/debug-center-pointer.png') no-repeat center center #333; | |
| color: white; |
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
| * {margin: 0; padding: 0} /* reset */ | |
| html, body { | |
| height: 100%; | |
| } | |
| body { | |
| border-top: 50px solid; /* You need to set the border for the header to overlap on. */ | |
| border-bottom: 100px solid; /* Height of footer. */ | |
| box-sizing: border-box; /* paulirish.com/2012/box-sizing-border-box-ftw/ */ |