aboutsummaryrefslogtreecommitdiffstats
path: root/default.css
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2010-12-11 22:33:30 +0100
committerStefan Kangas <stefankangas@gmail.com>2010-12-11 22:33:30 +0100
commitbb841410e0810071aec4b497872e6b3f3a27343a (patch)
tree5312ecc6c6307aa64651a8ad051e622f2f8091df /default.css
parent28de3a6785ed4999000ac13d8bedddaa6766f035 (diff)
Reworked version of website, now with a nice CSS.
Diffstat (limited to 'default.css')
-rw-r--r--default.css152
1 files changed, 152 insertions, 0 deletions
diff --git a/default.css b/default.css
new file mode 100644
index 0000000..4d777fd
--- /dev/null
+++ b/default.css
@@ -0,0 +1,152 @@
+/*#############################################################
+Name: Summer Breeze
+Date: 2006-07-04
+Author: Viktor Persson
+Edited by Gustav Eek and Stefan Kangas
+URL: http://arcsin.se
+
+Feel free to use and modify but please provide credits.
+#############################################################*/
+
+/* standard elements */
+* {
+ font: normal 1em "Lucida Sans Unicode",sans-serif;
+ margin: 0; padding: 0;
+}
+a {
+ color: #362;
+}
+a:hover, .footer a:hover {
+ color: #111;
+}
+body {
+ background: #769359 url(img/bg.jpg) repeat-y center top;
+ color: #443;
+ font-size: 12px;
+ margin: 0;
+}
+p,cite,code,ul
+{
+ margin-bottom: 1.7em;
+ line-height: 1.7em;
+ text-align: justify;
+}
+h1
+{
+ font: normal 1.2em "Lucida Sans Unicode",sans-serif;
+}
+ul
+{
+ margin-left: 1em;
+}
+li
+{
+ list-style: url(img/li.gif);
+ margin-left: 18px;
+ margin-bottom: 0.5em;
+}
+code {
+ background: url(img/bgcode.gif);
+ border: 1px dotted #AAA;
+ color: #444;
+ display: block;
+ font: normal 1em "Lucida Sans Unicode",serif;
+ margin-bottom: 12px;
+ padding: 8px 10px;
+ white-space: pre;
+}
+
+cite {
+ display: block;
+ background: url(img/quote.gif) no-repeat;
+ color: #663;
+ font: normal 1.1em "Lucida Sans Unicode",serif;
+ padding-left: 28px;
+}
+
+/* misc */
+.divider {
+ background: url(img/divider.gif) no-repeat;
+ height: 24px;
+ margin: 16px 0;
+}
+.clearer {
+ clear: both;
+}
+
+/* structure */
+p.incitement
+{
+ text-align: center;
+}
+
+.container {
+ font-size: 1em;
+ margin: 0 auto;
+ width: 590px;
+}
+
+/* header */
+.header {
+ background: #597F93 url(img/header.jpg) no-repeat center top;
+ border-bottom: 1px solid #CCC;
+ height: 180px;
+ text-align: center;
+}
+.header h1 {
+ color: #FFF;
+ font: normal 4em "Trebuchet MS",sans-serif;
+ line-height: 180px;
+}
+
+/* navigation */
+.navigation {
+ height: 36px;
+ margin: 0 auto;
+ width: 632px;
+}
+.navigation a {
+ background: url(img/navigation.jpg) no-repeat;
+ color: #FFF;
+ float: left;
+ font: bold 1.2em serif;
+ height: 31px;
+ letter-spacing: 1px;
+ line-height: 31px;
+ text-align: center;
+ text-decoration: none;
+ width: 120px;
+}
+.navigation a:hover {
+ color: #FFF;
+ background-position: left bottom;
+}
+
+/* content */
+.content {
+ padding: 18px 0;
+}
+.content h1
+{
+ color: #553;
+ font-size: 1.4em;
+ margin-bottom: 4px;
+ text-align: center;
+}
+.content h2
+{
+ font: normal 1.1em "Lucida Sans Unicode",sans-serif;
+ margin-top: 1.5em;
+ margin-bottom: 1em;
+}
+
+/* footer */
+.footer {
+ color: #886;
+ font-size: 0.9em;
+ padding-bottom: 12px;
+ text-align: center;
+}
+.footer a {
+ color: #664;
+}