Merge branch 'master' of github.com:reality/depressionbot

This commit is contained in:
Luke Slater 2011-11-09 21:54:40 +00:00
commit a057dbf85c
5 changed files with 66 additions and 53 deletions

BIN
public/background.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 279 KiB

View File

@ -4,68 +4,81 @@
* "npc" / Samuel Clements [ http://borntyping.co.uk ] * "npc" / Samuel Clements [ http://borntyping.co.uk ]
*/ */
/* #quotelist {
padding: 10px;
}
.quotes {
border-left: 2px solid red;
padding: 10px;
}
.quote {
border-left: 2px solid blue;
} */
html { html {
background: url(http://dl.dropbox.com/u/13375195/depressionbot/images/background.jpg) no-repeat center center fixed; background: url("background.jpg") no-repeat center center fixed;
-webkit-background-size: cover; -webkit-background-size: cover;
-moz-background-size: cover; -moz-background-size: cover;
-o-background-size: cover; -o-background-size: cover;
background-size: cover; background-size: cover;
} }
body { body {
padding: 30px; padding: 25px;
font-size: 46px; margin: 0;
font-family: "Lucida Grande"; font-family: "Lucida Grande";
font-weight: bold; color: black;
margin: 0; text-shadow: 1px 1px 2px #2B2B2B;
color: black;
text-shadow: 1px 1px 2px #2B2B2B;
} }
ul { div#title {
list-style: none; font-size: 42px;
font-weight: bold;
}
div#main {
padding: 25px 0px;
margin: 0px;
font-size: 21px;
text-align:center;
} }
a { a {
width: 600px;
height: 150px;
margin: 25px auto;
display: block;
background: white;
box-shadow: 0 0 20px black;
padding: 20px;
border-radius: 15px;
opacity: 0.5;
color: #12699B;
text-align: center;
vertical-align: middle;
text-decoration: none; text-decoration: none;
} }
a:hover { div.quotes, div.quote {
color: #12699B;
box-shadow: 0 0 20px black;
opacity: 0.5;
}
/* Quotes list page */
div.quotes {
background: white;
float: left;
display: inline;
margin: 10px;
padding: 20px;
border-radius: 15px;
}
div.quotes:hover {
opacity: 0.8; opacity: 0.8;
} }
a span { div.quotes a {
position: relative;
top: -60px;
} }
img { /* Quote list pages */
width: 150px;
height: 150px; div#quotelist {
background: url(http://dl.dropbox.com/u/13375195/depressionbot/images/null.png); width:100%;
} }
div#quotelist div.quote {
background: white;
border-radius: 5px;
margin: 10px auto;
padding: 10px;
font-size: 18px;
width:90%;
opacity: 0.7;
color:darkblue;
text-shadow: 1px 1px 1px black;
}
div#quotelist div.quote:hover {
opacity: 1;
}

View File

@ -6,4 +6,5 @@ html(lang: 'en')
title Depressionbot web interface title Depressionbot web interface
body body
div#title Depressionbot web interface div#title Depressionbot web interface
!{body} div#main
!{body}

View File

@ -1,4 +1,3 @@
div#quotelist -each quote in quotelist
-each quote in quotelist div.quotes
div.category a(href='/quotes/'+quote) #{quote}
a(href='/quotes/' + quote) #{quote}

View File

@ -1,3 +1,3 @@
div.quotes div#quotelist
-each quote in quotes -each quote in quotes
div.quote #{quote} div.quote #{quote}