Permalink
Please sign in to comment.
Showing
with
1,168 additions
and 28 deletions.
- +4 −1 app.js
- +2 −1 package.json
- +38 −0 public/css/local.css
- +427 −0 public/css/normalize.css
- +418 −0 public/css/skeleton.css
- +128 −0 public/images/metacran-logo.svg
- +0 −8 public/stylesheets/style.css
- +10 −0 routes/index.js
- +0 −6 views/error.jade
- +124 −0 views/index.html
- +0 −5 views/index.jade
- +17 −0 views/layout.html
- +0 −7 views/layout.jade
| @@ -0,0 +1,38 @@ | ||
| + | ||
| +body { | ||
| + margin-top: 20px; | ||
| +} | ||
| + | ||
| +h1 { | ||
| + margin-top: 15px; | ||
| +} | ||
| + | ||
| +ul.menu { | ||
| + list-style-type: none; | ||
| + margin-left: 10px; | ||
| +} | ||
| + | ||
| +a { | ||
| + text-decoration: none; | ||
| +} | ||
| + | ||
| +a:hover { | ||
| + color: red; | ||
| +} | ||
| + | ||
| +form { | ||
| + margin-bottom: 0px; | ||
| +} | ||
| + | ||
| +pre { | ||
| + padding-top: 5px; | ||
| +} | ||
| + | ||
| +span.output { | ||
| + color: #888; | ||
| +} | ||
| + | ||
| +img.badge { | ||
| + width: 200px; | ||
| + height: auto; | ||
| +} |
Oops, something went wrong.
0 comments on commit
f29e410