Skip to content

Commit

Permalink
more style tweaks: added images to aid differentiation
Browse files Browse the repository at this point in the history
  • Loading branch information
thenoviceoof committed Nov 26, 2011
1 parent 8cd1ee5 commit 0370119
Show file tree
Hide file tree
Showing 9 changed files with 1,468 additions and 6 deletions.
2 changes: 1 addition & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</head>
<body>
<header>
<h1>{{ page.title }}</h1>
<h1><a href="{{ page.url }}">{{ page.title }}</a></h1>
<h2><a href="http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer/">Leveling up as a developer</a> <a href="#">Log</a></h2>
</header>

Expand Down
2 changes: 1 addition & 1 deletion all/paradigms/_posts/1-1-1-assembly.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: post
title: Write a program in assembly language
status: done
finished: 2011/8/20
time: 2011/8/20
---

Hello world
4 changes: 2 additions & 2 deletions all/paradigms/_posts/1-1-2-functional.markdown
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: post
title: Write an application in a functional language
status: todo
finished: _
status: wip
time: whenever
---
15 changes: 14 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,24 @@
border-left:3px solid #FF0000;
}

.wip {
background:#FFFFD9 url("../img/wip.png") no-repeat 99.6% 3px;
border-left:3px solid #FFFF00;
}

.done {
background-color:#F0FFF0;
background:#F0FFF0 url("../img/check.png") no-repeat 99.6% 3px;
border-left:3px solid #00FF00;
}

.todo time {
display:none;
}

.wip time:before {
content:"Last Updated: ";
}

.done time {
display:inline-block;
margin:0.2em;
Expand All @@ -23,6 +32,10 @@
border-radius:6px;
}

.done time:before {
content:"Finished: ";
}

/* header ---------------------------------------- */

body {
Expand Down
Loading

0 comments on commit 0370119

Please sign in to comment.