pineapple responsive > Pineres author: @mrjopino
Created
January 13, 2014 06:23
-
-
Save jofpin/8395533 to your computer and use it in GitHub Desktop.
A Pen by José Pino.
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
| <!-- Pineres pineapple responsive --> | |
| <h1>Pineres3</h1> | |
| <!-- pr-6 --> | |
| <div class="space"> | |
| <div class="pr-6"> | |
| <div class="core">10%</div></div> | |
| </div> | |
| <!-- pr-5 --> | |
| <div class="space"> | |
| <div class="pr-5"> | |
| <div class="core">20%</div></div> | |
| </div> | |
| <!-- pr-4 --> | |
| <div class="space"> | |
| <div class="pr-4"> | |
| <div class="core">30%</div></div> | |
| </div> | |
| <!-- pr-3 --> | |
| <div class="space"> | |
| <div class="pr-3"> | |
| <div class="core">40%</div></div> | |
| </div> | |
| <!-- pr-2 --> | |
| <div class="space"> | |
| <div class="pr-2"> | |
| <div class="core">50%</div></div> | |
| </div> | |
| <!-- pr-1 --> | |
| <div class="space"> | |
| <div class="pr-1"> | |
| <div class="core">100%</div></div> | |
| </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
| /* | |
| * | |
| * Style demo pineres 3 | |
| * Copyright 2014, @mrjopino | |
| * | |
| */ | |
| @charset "UTF-8"; | |
| @import url(http://fonts.googleapis.com/css?family=Condiment); | |
| body { | |
| background: #e74c3c; | |
| } | |
| .core { | |
| text-align: center; | |
| font: 15px "Source Sans Pro",sans-serif; | |
| background: #3498db; | |
| color: #fff; | |
| padding: 15px 0 15px 0; | |
| } | |
| h1 { | |
| text-align: center; | |
| font: 6em "Condiment"; | |
| color: #fff; | |
| font-weight: 100; | |
| padding: 40px; | |
| padding-bottom: 0; | |
| } | |
| a,a:link,a:visited,a:hover,a:active { | |
| text-decoration: inherit; | |
| font-weight: inherit; | |
| color: #2c90e8; | |
| } | |
| @media (max-width: 480px) { | |
| h1 { | |
| font-size: 3em; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment