Created
September 30, 2013 18:23
-
-
Save jmariano13/6767923 to your computer and use it in GitHub Desktop.
Code School
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 class="more" href="#">More Information</a> | |
| //css | |
| .more { | |
| background: #c09d78 url(arrow.png) right no-repeat; | |
| display: block; | |
| position: relative; | |
| padding: 0 50px; | |
| } |
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
| <figure> <img src="wovenwonder.jpg" alt="The Woven Wonder "/></figure> | |
| //css | |
| figure { | |
| border: 2px solid #c5c9cf; | |
| } |
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
| <section class="content about"> | |
| <h1>Our Store</h1> | |
| <ul class="store"> | |
| <li> | |
| <img src="store1.jpg" alt="Our Store" /> | |
| </li> | |
| <li> | |
| <img src="store2.jpg" alt="Our Store" /> | |
| </li> | |
| <li> | |
| <img src="store3.jpg" alt="Our Store" /> | |
| </li> | |
| <li> | |
| <img src="store4.jpg" alt="Our Store" /> | |
| </li> | |
| </ul> | |
| </section> | |
| //css | |
| .store li { | |
| height: 150px; | |
| width: 150px; | |
| } | |
| .store li { | |
| height: 150px; | |
| width: 150px; | |
| 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
| .store li { | |
| height: 150px; | |
| width: 150px; | |
| overflow: hidden; | |
| } | |
| .store li img { | |
| height: auto; | |
| width: 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
| .store li { | |
| height: 150px; | |
| width: 150px; | |
| overflow: hidden; | |
| } | |
| .store li img { | |
| height: auto; | |
| width: 150px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment