diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..ef12e9d Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/logo.png b/public/logo.png new file mode 100644 index 0000000..0f50fb0 Binary files /dev/null and b/public/logo.png differ diff --git a/public/styles.css b/public/styles.css index c4a1d97..faeb011 100644 --- a/public/styles.css +++ b/public/styles.css @@ -1,3 +1,15 @@ +h1.logo{ + font-family: helvetica,arial,sans-serif; + font-size: 24px; + color: black; + padding: 64px 0 0; + margin: 0 auto; + text-transform: uppercase; + text-align: center; + font-weight: normal; + letter-spacing: 0.3em; + background: transparent url(/logo.png) 50% 0 no-repeat; + } .completed{ text-decoration: line-through; } diff --git a/views/layout.haml b/views/layout.haml index 95cedb1..5dada40 100644 --- a/views/layout.haml +++ b/views/layout.haml @@ -3,7 +3,8 @@ %head %meta(charset="utf-8") %title Just Do It + %link(rel="shortcut icon" href="/favicon.ico") %link(rel="stylesheet" href="/styles.css") %body - %h1 Just Do It + %h1.logo Just Do It = yield