2009-05-07 05:45:02 +00:00
|
|
|
/* This template is based on:
|
2009-05-12 06:20:29 +00:00
|
|
|
*
|
|
|
|
* Embedded Moose, Josh Triplett <josh@freedesktop.org>
|
|
|
|
*
|
|
|
|
* Improved by Csillag Tamas <cstamas@digitus.itk.ppke.hu>
|
|
|
|
*
|
|
|
|
* Nico Schottelius <nico-ikiwiki-css -at- schottelius.org>
|
|
|
|
*
|
|
|
|
* - Added sidebar and tagcloud support
|
|
|
|
* - Made links better viewable
|
|
|
|
* - Smaller footer
|
|
|
|
*
|
2010-06-10 07:39:02 +00:00
|
|
|
* css for dummies: # = id, . = class
|
2009-05-12 06:20:29 +00:00
|
|
|
*/
|
2008-11-12 11:15:09 +00:00
|
|
|
|
2014-05-30 13:47:23 +00:00
|
|
|
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,700italic);
|
|
|
|
|
|
|
|
|
2010-06-10 07:31:02 +00:00
|
|
|
.sidebar, .pagecloud {
|
2014-05-30 13:59:11 +00:00
|
|
|
background: #ffffff;
|
2014-05-30 14:02:02 +00:00
|
|
|
border: 1px dotted #c0c0c0;
|
2009-05-07 09:49:54 +00:00
|
|
|
font-size: 80%;
|
2014-05-30 13:49:21 +00:00
|
|
|
font-family: 'Open Sans', sans-serif;
|
2014-05-30 13:59:11 +00:00
|
|
|
color: #00000;
|
2009-05-07 09:49:54 +00:00
|
|
|
}
|
|
|
|
|
2010-06-10 07:31:02 +00:00
|
|
|
.sidebar {
|
2009-05-07 12:28:25 +00:00
|
|
|
width: 20ex;
|
|
|
|
float: left;
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
2009-05-07 12:46:55 +00:00
|
|
|
|
|
|
|
.pagecloud {
|
|
|
|
float: right;
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-right: 0px;
|
|
|
|
}
|
2009-05-07 12:28:25 +00:00
|
|
|
|
2010-06-10 07:31:02 +00:00
|
|
|
.sidebar ul {
|
2009-05-07 09:49:54 +00:00
|
|
|
list-style-type: none;
|
|
|
|
padding-left: 1em;
|
2009-05-07 06:07:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-07 05:45:02 +00:00
|
|
|
body {
|
2014-05-30 13:59:11 +00:00
|
|
|
background: #ffffff;
|
2009-05-07 05:45:02 +00:00
|
|
|
}
|
2008-11-12 11:15:09 +00:00
|
|
|
|
2009-05-07 05:45:02 +00:00
|
|
|
#content {
|
2014-05-30 13:59:11 +00:00
|
|
|
background: #ffffff;
|
2009-05-07 09:49:54 +00:00
|
|
|
margin: 10px 0px;
|
|
|
|
margin-left: 21ex;
|
2009-05-07 10:23:39 +00:00
|
|
|
border: 1px dotted #c0c0c0;
|
|
|
|
padding: 10px;
|
2014-05-30 13:49:21 +00:00
|
|
|
font-family: 'Open Sans', sans-serif;
|
2014-05-30 13:59:11 +00:00
|
|
|
color: #00000;
|
2009-05-07 05:45:02 +00:00
|
|
|
}
|
2008-11-12 11:15:09 +00:00
|
|
|
|
2009-05-07 05:45:02 +00:00
|
|
|
h1 {
|
|
|
|
font-size: 150%;
|
2014-05-30 13:55:11 +00:00
|
|
|
color: #000000;
|
2009-05-07 05:45:02 +00:00
|
|
|
}
|
2008-11-12 11:15:09 +00:00
|
|
|
|
2009-05-07 05:45:02 +00:00
|
|
|
h2 {
|
|
|
|
font-size: 130%;
|
2014-05-30 13:55:11 +00:00
|
|
|
color: #000000;
|
2009-05-07 05:45:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2014-05-30 13:55:11 +00:00
|
|
|
color: #3cacb8;
|
2009-05-07 05:45:02 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2009-05-07 10:23:39 +00:00
|
|
|
a:hover { background: blue; }
|
2009-05-07 05:45:02 +00:00
|
|
|
|
|
|
|
pre {
|
2009-05-07 10:23:39 +00:00
|
|
|
color: #d0d0d0;
|
|
|
|
border: 1px dotted #c0c0c0;
|
|
|
|
background: black;
|
|
|
|
padding: 2px;
|
2009-05-07 05:45:02 +00:00
|
|
|
font-size: 110%;
|
|
|
|
}
|
|
|
|
|
2014-05-30 14:28:08 +00:00
|
|
|
.feedbutton {
|
2014-05-30 14:47:19 +00:00
|
|
|
background: #ffffff;
|
|
|
|
color: #000000 !important;
|
2014-05-30 14:28:08 +00:00
|
|
|
}
|
2009-05-07 05:45:02 +00:00
|
|
|
|
2014-05-30 14:42:22 +00:00
|
|
|
.feedbutton:hover {
|
|
|
|
border: 1px dotted #c0c0c0;
|
|
|
|
}
|
|
|
|
|
2014-05-30 14:50:51 +00:00
|
|
|
.inlinepage {
|
|
|
|
border: 1px dotted #c0c0c0;
|
2014-05-30 14:55:14 +00:00
|
|
|
margin: 1em 0;
|
2014-05-30 14:50:51 +00:00
|
|
|
}
|
2014-05-30 14:42:22 +00:00
|
|
|
|
2009-05-07 05:45:02 +00:00
|
|
|
.header {
|
2014-05-30 13:55:11 +00:00
|
|
|
background: #ffffff;
|
2014-05-30 14:00:51 +00:00
|
|
|
border: none;
|
2009-05-07 09:49:54 +00:00
|
|
|
padding: 10px;
|
2014-05-30 13:57:10 +00:00
|
|
|
color: #000000;
|
2014-05-30 13:49:21 +00:00
|
|
|
font-family: 'Open Sans', sans-serif;
|
2009-05-07 05:45:02 +00:00
|
|
|
}
|
|
|
|
|
2009-05-14 15:54:43 +00:00
|
|
|
.header a {
|
|
|
|
margin-right: 1ex;
|
2014-05-30 13:55:11 +00:00
|
|
|
color: #3cacb8;
|
2014-05-30 13:49:21 +00:00
|
|
|
font-family: 'Open Sans', sans-serif;
|
2009-05-14 15:54:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tags, #backlinks {
|
2014-05-30 13:58:11 +00:00
|
|
|
background: #ffffff;
|
2014-05-30 14:04:00 +00:00
|
|
|
border: none;
|
2009-05-14 15:54:43 +00:00
|
|
|
margin: 2px;
|
2014-05-30 13:55:11 +00:00
|
|
|
color: #00000;
|
2014-05-30 13:49:21 +00:00
|
|
|
font-family: 'Open Sans', sans-serif;
|
2009-05-14 15:54:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tags {
|
2014-05-30 13:55:11 +00:00
|
|
|
color: #000000;
|
2009-05-14 15:54:43 +00:00
|
|
|
}
|
2009-05-07 12:28:25 +00:00
|
|
|
|
2010-06-10 07:40:11 +00:00
|
|
|
/* pagedate is even less interesting, make it even smaller */
|
2009-05-07 12:28:25 +00:00
|
|
|
.pagedate {
|
2014-05-30 13:58:11 +00:00
|
|
|
background: #ffffff;
|
2009-05-07 12:28:25 +00:00
|
|
|
border: none;
|
|
|
|
padding: 4px;
|
2014-05-30 13:58:11 +00:00
|
|
|
color: #00000;
|
2010-06-10 07:40:11 +00:00
|
|
|
font-size: 80%;
|
2009-05-07 12:28:25 +00:00
|
|
|
}
|
|
|
|
|
2014-05-30 14:06:00 +00:00
|
|
|
#pageinfo {
|
|
|
|
margin: 1em 0px;
|
|
|
|
border-top: 1px dotted #c0c0c0;
|
|
|
|
}
|
|
|
|
|
2014-05-30 13:58:11 +00:00
|
|
|
.selflink { background: #ffffff; color: black }
|
|
|
|
.actions ul { background: #ffffff; border: none; padding-bottom: 0px; font-family: 'Open Sans', sans-serif;}
|
2014-05-30 13:49:21 +00:00
|
|
|
.actions a { margin-right: 1ex; color: #dfdfdf; font-family: 'Open Sans', sans-serif;}
|
|
|
|
#footer { border: none; font-family: 'Open Sans', sans-serif;}
|
2010-06-10 07:39:02 +00:00
|
|
|
|
2010-06-10 07:40:11 +00:00
|
|
|
/* elements at the bottom should be a bit smaller in general */
|
2010-06-10 07:39:02 +00:00
|
|
|
.pagefooter {
|
2014-05-30 13:49:21 +00:00
|
|
|
font-family: 'Open Sans', sans-serif;
|
2010-06-10 07:40:11 +00:00
|
|
|
font-size: 80%;
|
2010-06-10 07:39:02 +00:00
|
|
|
}
|