2011-11-08 19:45:40 +01:00
|
|
|
/*
|
|
|
|
* Authors
|
|
|
|
* Dafydd "Afal" Francis [ http://www.somethingafal.com/ ]
|
|
|
|
* "npc" / Samuel Clements [ http://borntyping.co.uk ]
|
|
|
|
*/
|
|
|
|
|
2011-11-08 21:10:55 +01:00
|
|
|
html {
|
|
|
|
background: url("background.jpg") no-repeat center center fixed;
|
|
|
|
-webkit-background-size: cover;
|
|
|
|
-moz-background-size: cover;
|
|
|
|
-o-background-size: cover;
|
|
|
|
background-size: cover;
|
2011-11-08 16:36:18 +01:00
|
|
|
}
|
|
|
|
|
2011-11-08 21:10:55 +01:00
|
|
|
body {
|
|
|
|
padding: 25px;
|
|
|
|
margin: 0;
|
|
|
|
font-family: "Lucida Grande";
|
|
|
|
color: black;
|
|
|
|
text-shadow: 1px 1px 2px #2B2B2B;
|
2011-11-08 16:36:18 +01:00
|
|
|
}
|
|
|
|
|
2011-11-08 21:10:55 +01:00
|
|
|
div#title {
|
|
|
|
font-size: 42px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2011-11-08 16:36:18 +01:00
|
|
|
|
2011-11-08 21:10:55 +01:00
|
|
|
div#main {
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
2011-11-08 21:28:46 +01:00
|
|
|
font-size: 21px;
|
2011-11-08 21:10:55 +01:00
|
|
|
text-align:center;
|
2011-11-08 16:36:18 +01:00
|
|
|
}
|
|
|
|
|
2011-11-08 21:10:55 +01:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
2011-11-08 16:36:18 +01:00
|
|
|
}
|
|
|
|
|
2011-11-08 21:32:35 +01:00
|
|
|
div.quotes, div.quote {
|
2011-11-08 21:10:55 +01:00
|
|
|
color: #12699B;
|
|
|
|
box-shadow: 0 0 20px black;
|
|
|
|
opacity: 0.5;
|
2011-11-08 16:36:18 +01:00
|
|
|
}
|
|
|
|
|
2011-11-08 21:10:55 +01:00
|
|
|
/* Quotes list page */
|
|
|
|
|
2011-11-08 21:28:46 +01:00
|
|
|
div.quotes {
|
2011-11-08 21:10:55 +01:00
|
|
|
background: white;
|
|
|
|
float: left;
|
|
|
|
display: inline;
|
|
|
|
margin: 10px;
|
|
|
|
padding: 20px;
|
|
|
|
border-radius: 15px;
|
2011-11-08 16:36:18 +01:00
|
|
|
}
|
|
|
|
|
2011-11-08 21:28:46 +01:00
|
|
|
div.quotes:hover {
|
2011-11-08 16:36:18 +01:00
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
2011-11-08 21:28:46 +01:00
|
|
|
div.quotes a {
|
|
|
|
|
2011-11-08 21:16:35 +01:00
|
|
|
}
|
|
|
|
|
2011-11-08 21:28:46 +01:00
|
|
|
div.quote {
|
|
|
|
background: #CCC;
|
2011-11-08 21:10:55 +01:00
|
|
|
margin: 10px;
|
|
|
|
padding: 20px;
|
|
|
|
border-radius: 15px;
|
2011-11-08 16:36:18 +01:00
|
|
|
}
|
|
|
|
|
2011-11-08 21:28:46 +01:00
|
|
|
div.quote:hover {
|
2011-11-08 21:10:55 +01:00
|
|
|
|
|
|
|
}
|