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 narrow josefin"> | |
| <div class="row-fluid"> | |
| <div class="span6"> | |
| <img src="html.png"> | |
| </div> | |
| <div class="span6"> | |
| <h1 class="big"> | |
| Hot & Tasty Markup Learning.. | |
| </h1> | |
| </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
| /* narrow container */ | |
| .narrow{ | |
| padding-left: 200px; | |
| padding-right: 200px; | |
| } | |
| /* custom font */ | |
| .josefin{ | |
| font-family: 'Josefin Slab', serif; | |
| } |
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 narrow grey"> | |
| <div class="row-fluid"> | |
| <div class="span4 step center"> | |
| <img src="img1.png"> | |
| <h3>Choose your markup</h3> | |
| <p>Pick them in our templates : a navbar, a footer section..</p> | |
| </div> | |
| <div class="span4 step center"> | |
| <img src="img2.png"> | |
| <h3>Add some spicy CSS</h3> |
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
| /* narrow container */ | |
| .narrow{ | |
| padding-left: 200px; | |
| padding-right: 200px; | |
| } | |
| /* grey container */ | |
| .grey{ | |
| background: rgb(228,227,212); | |
| } |
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 narrow white"> | |
| <div class="row-fluid"> | |
| <div class="span6"> | |
| <div class="row-fluid"> | |
| <div class="span12"> | |
| <img src="css.png"> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="span6"> |
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
| /* narrow container */ | |
| .narrow{ | |
| padding-left: 200px; | |
| padding-right: 200px; | |
| } | |
| /* white container */ | |
| .white{ | |
| background: 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
| <div class="my-container with_background"> | |
| <div class="row-fluid"> | |
| <div class="span6 offset3"> | |
| <div class="row-fluid"> | |
| <div class="span6 step center"> | |
| <h2>1</h2> | |
| <h3>Design goes first. Before any code.</h3> | |
| </div> | |
| <div class="span6 step center"> | |
| <h2>2</h2> |
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
| /* set container background image */ | |
| .with_background{ | |
| background-image: url("peppers.jpg"); | |
| background-repeat: no-repeat; | |
| background-size: 100%; | |
| } | |
| /* step block */ | |
| .step{ | |
| background: rgb(255,255,255); |