Created
January 21, 2013 13:54
-
-
Save mason-stewart/4586215 to your computer and use it in GitHub Desktop.
First attempt at the Ice Cream app from CoderDojo Greenville :D
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> | |
| <head> | |
| <title>My Great Ice Cream</title> | |
| <style type="text/css"> | |
| .sidebar { | |
| width: 50%; | |
| float: left; | |
| } | |
| .thumbnail { | |
| float: left; | |
| width: 120px; | |
| height: 120px; | |
| border-radius: 120px; | |
| overflow: hidden; | |
| } | |
| .thumbnail img { | |
| width: 100%; | |
| height: 100%; | |
| } | |
| .main { | |
| width: 45%; | |
| float: left; | |
| } | |
| .big { | |
| float: left; | |
| width: 100%; | |
| border-radius: 1000px; | |
| overflow: hidden; | |
| } | |
| .big img { | |
| width: 100%; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="sidebar"> | |
| <div class="thumbnail"> | |
| <img src="ice-cream-1.jpg"> | |
| </div> | |
| <div class="thumbnail"> | |
| <img src="ice-cream-2.jpg"> | |
| </div> | |
| <div class="thumbnail"> | |
| <img src="ice-cream-3.jpg"> | |
| </div> | |
| </div> | |
| <!-- end of sidebar --> | |
| <div class="main"> | |
| <div class="big"> | |
| <img src="ice-cream-4.jpg"> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment