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 { | |
| border-top: 8px solid #009de0; | |
| margin: 0; | |
| } | |
| header { | |
| margin: -8px 0 0 0; | |
| background-color: #eee; | |
| min-height: 200px; | |
| } |
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 { | |
| border-top: 8px solid #f00; | |
| margin: 0; | |
| } | |
| header { | |
| margin: -8px auto 0 auto; | |
| width: 60%; | |
| background-color: #eee; | |
| min-height: 200px; |
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
| <!-- content to be placed inside <body>…</body> --> |
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 { | |
| background: #eee; | |
| } | |
| .wrapper { | |
| width: 600px; | |
| height: 600px; | |
| margin: 0 auto 0 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
| body { | |
| background: #eee; | |
| } | |
| .wrapper { | |
| width: 600px; | |
| height: 600px; | |
| margin: 0 auto 0 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
| body { | |
| background: #eee; | |
| } | |
| .wrapper { | |
| width: 600px; | |
| height: 600px; | |
| margin: -300px auto; | |
| top: 50%; | |
| } |
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
| .transition { | |
| transition: all 500ms ease-in-out; | |
| } | |
| .transition:hover { | |
| background-color: #f0f; | |
| } |
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
| .stage { | |
| position: relative; | |
| width: 100%; | |
| height: 100%; | |
| } | |
| .lowerthird { | |
| background-color: rgba(255,0,0,0.5); | |
| padding: 50px; | |
| 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
| .stage { | |
| position: relative; | |
| width: 100%; | |
| height: 100%; | |
| } | |
| .lowerthird { | |
| background-color: rgba(255,0,0,0.5); | |
| padding: 50px; | |
| 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
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| .browser { | |
| width: 400px; | |
| height: 250px; | |
| position: relative; | |
| perspective: 500; | |
| margin-top: 100px; |