Created
June 5, 2011 21:58
-
-
Save ryanclark2/1009476 to your computer and use it in GitHub Desktop.
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
body { | |
margin: 35px auto; | |
width: 640px; | |
} | |
header { | |
text-align: center; | |
margin: 0 0 20px; | |
} | |
header h1 { | |
display: inline; | |
font-size: 32px; | |
} | |
header h1 a:link, header h1 a:visited { | |
color: #444; | |
text-decoration: none; | |
} | |
header h2 { | |
font-size: 16px; | |
font-style: italic; | |
color: #999; | |
} | |
#main { | |
margin: 0,0 20px; | |
} | |
#add { | |
margin: 0,0 20px; | |
} | |
#add textarea { | |
height: 30px; | |
width: 510px; | |
padding: 10px; | |
border: 1px solid #ddd; | |
} | |
#add input { | |
height: 50px; | |
width: 100px; | |
margin: -50px 0 0; | |
border: 1px solid #ddd; | |
background: white; | |
} | |
#edit textarea { | |
height: 30px; | |
width: 480px; | |
padding: 10px; | |
border: 1px solid #ddd; | |
} | |
#edit input[type=sumbit] { | |
height: 50px; | |
width: 100px; | |
margin: -50px 0 0; | |
border: 1px solid #ddd; | |
background: white; | |
} | |
#edit input[type=checkbox] { | |
height: 50px; | |
width: 100px; | |
margin: -50px 0 0; | |
border: 1px solid #ddd; | |
background: white; | |
} | |
article { | |
border: 1px solid #eee; | |
border-top: none; | |
padding: 15px 10px; | |
} | |
article:first-of-type { | |
border: 1px solid #eee; | |
} | |
article:nth-child(even) { | |
background: #fafafa; | |
} | |
article.complete { | |
background: #fedae3; | |
} | |
article span { | |
font-size: 0.8em; | |
} | |
p { | |
margin: 0 0 5px; | |
} | |
.meta { | |
font-size: 0.8em; | |
font-style: italic; | |
color: #888; | |
} | |
.links { | |
font-size: 1.8em; | |
font-height: 0.8em; | |
float: rightright; | |
margin: -10px 0 0; | |
} | |
.links a { | |
display: block; | |
text-decoration: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment