This file contains 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
.header { | |
width: 960px; | |
margin: 0 auto; | |
} | |
.footer { | |
margin-top: 30px; | |
} | |
.article { |
This file contains 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
<!-- Element selectors --> | |
p, a, body, html | |
<!-- Descendant selectors --> | |
ul li { ... } | |
<!-- Child selectors --> | |
ul > li { ... } | |
<!-- Attribute selectors --> |
This file contains 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
h3 { ... } | |
h3.special { /* Add what makes this h3 heading special */} |
This file contains 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
#sidebar .h3 { ... } |
This file contains 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
.sidebar { | |
padding: 10px; | |
width: 200px; | |
} | |
.header { | |
padding: 10px; | |
width: 1000px; | |
} |
This file contains 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
.sidebar { | |
background: #eee; | |
background-image: -o-linear-gradient(bottom, #F23B1 0%, #293FD5 100%); | |
background-image: -moz-linear-gradient(bottom, #F23B1 0%, #293FD5 100%); | |
background-image: -webkit-linear-gradient(bottom, #F23B1 0%, #293FD5 100%); | |
background-image: -ms-linear-gradient(bottom, #F23B1 0%, #293FD5 100%); | |
background-image: linear-gradient(to bottom, #F23B1 0%, #293FD5 100%); | |
border-radius: 5px; | |
padding: 10px; | |
width: 200px; |
This file contains 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
--- | |
title: Typography Project | |
date: 2014-02-12 | |
category: projects | |
permalink: typography-deux | |
--- |
This file contains 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
<% blog.articles.select {|a| a.data.category == "projects"}[0..10].each do |article| %> | |
<li><a href="<%= article.data.permalink %>"><%= article.title %></a></li> | |
<% end %> |
This file contains 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
--- | |
layout: projects-layout | |
--- |
This file contains 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
<%= yield %> |