Skip to content

Commit

Permalink
yo
Browse files Browse the repository at this point in the history
  • Loading branch information
arvidkahl committed Mar 12, 2012
1 parent e9db057 commit a721f2d
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
6 changes: 5 additions & 1 deletion public/less/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -3734,5 +3734,9 @@ h1 {
text-shadow: 0px 0px 3px #ffffff;
}
#indexRandomScenes h2 {
margin-top: -15px;
margin-top: -10px;
margin-bottom: 7px;
}
footer {
margin-top: 10px;
}
6 changes: 5 additions & 1 deletion public/less/utilities.less
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,9 @@ h1 {
}

#indexRandomScenes h2 {
margin-top:-15px;
margin-top:-10px;
margin-bottom:7px;
}
footer {
margin-top:10px;
}
9 changes: 7 additions & 2 deletions views/index.jade
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,15 @@
a.btn.btn-primary(href="/howto") Show me how it works! »
|
a.btn(href="/random") Take me to a scene already! »
.row
div.span12
.well
h1 Hello!
p Welcome to Spark. This is a platform for authors like you who want to find inspiration in concept art from all over the internet. You can add Stories to the concept artpieces (which are called Scenes) and share them to inspire others.
.row#indexRandomScenes
div.span4
.well
h2 Check!
h2 Check.
a(href='/'+docs[0]._id)
div.image
img(id=docs[0]._id,src=docs[0].url, alt=docs[0].body)
Expand All @@ -21,7 +26,7 @@

div.span4
.well
h2 These!
h2 These.
a(href='/'+docs[1]._id)
div.image
img(id=docs[1]._id,src=docs[1].url, alt=docs[1].body)
Expand Down
2 changes: 1 addition & 1 deletion views/single.jade
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ div.row
div.span6
.well
h1.sceneTitle= doc.title+" "
small added by #{doc.createUserName}
div.created.hide #{(new Date(doc.created_at)).toGMTString()}
div.image
a#scene(href=doc.url)
img(src=doc.url)
small.pull-right added by #{doc.createUserName}
script
$(function(){$('#scene').lightBox({overlayOpacity:0.9});});
- if (everyauth.userId == doc.createUserId)
Expand Down

0 comments on commit a721f2d

Please sign in to comment.