Created
November 7, 2014 09:19
-
-
Save jfreyre/32165762d4abaf20c5ca to your computer and use it in GitHub Desktop.
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="article"> | |
<div class="en-tete"> | |
<h1>Lorem ipsum</h1> | |
</div> | |
<div class="contenu"> | |
<p>Lorem ipsum dolor sit amet</p> | |
</div> | |
<div class="meta">...</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
body { | |
font-size: 10px; | |
font-family: Arial; | |
} | |
.article > div { | |
padding: 10px; | |
} | |
h1 { | |
font-family: Georgia, serif; | |
color: #E37B33; | |
border: 1px solid red; | |
padding: 10px; | |
margin: 0; | |
} | |
div.article { | |
border: 1px solid #E5E5E5; | |
background: whitesmoke; | |
color: #666666 | |
font-size: 1.1em; | |
} | |
.en-tete { | |
font-size: 2em; | |
} | |
.en-tete h1 { | |
font-family: "Futura", serif; | |
margin-left: 12px; | |
margin-right: 12px; | |
border: 0; | |
border-bottom: 1px solid #E5E5E5 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment