woot, a little bit more worky.

This commit is contained in:
Samuel Clements 2011-11-08 20:28:46 +00:00
parent 1b9fbdd894
commit fd27c8a010
3 changed files with 11 additions and 14 deletions

View File

@ -28,8 +28,7 @@ div#title {
div#main { div#main {
padding: 0px; padding: 0px;
margin: 0px; margin: 0px;
font-size: 28px; font-size: 21px;
line-height: 100px;
text-align:center; text-align:center;
} }
@ -37,8 +36,7 @@ a {
text-decoration: none; text-decoration: none;
} }
a.category, a.quote { div.quote, span.quote {
color: #12699B; color: #12699B;
box-shadow: 0 0 20px black; box-shadow: 0 0 20px black;
opacity: 0.5; opacity: 0.5;
@ -46,7 +44,7 @@ a.category, a.quote {
/* Quotes list page */ /* Quotes list page */
.category { div.quotes {
background: white; background: white;
float: left; float: left;
display: inline; display: inline;
@ -55,22 +53,21 @@ a.category, a.quote {
border-radius: 15px; border-radius: 15px;
} }
.category:hover { div.quotes:hover {
opacity: 0.8; opacity: 0.8;
} }
.category a { div.quotes a {
width:100%;
height:100%;
} }
span.quote { div.quote {
background: #222; background: #CCC;
margin: 10px; margin: 10px;
padding: 20px; padding: 20px;
border-radius: 15px; border-radius: 15px;
} }
span.quote:hover { div.quote:hover {
} }

View File

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

View File

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