/* ikiwiki local style sheet */ /* Add local styling here, instead of modifying style.css. */ /* * Someone else please work on this stuff -- someone who knows to make it * actually look good... Some examples are available at * . --tschwinge */ /* TODO. I'm incapable, but have ideas, so... (1) On web-edit pages like I'd like to have the whole page fit into the web browser frame, so that no scrollbars show up in the browser and all of header, text editing box, copyright assignment notice, buttons and footer are visible at once, without having to scroll. This means that the text editing box should be resized in height as needed (within limits, of course). --tschwinge (2) `.pagecopyright' and `.pagelicense' should get the spacing between them removed and should get some margins. */ hr { height: 1px; border-style: none; background-color: black; /* No idea, if this is ``just'' a Firefox bug (looks fine without the * following statement in konqueror), but it for sure inhibits the `hr's from * being shifted to the right. */ margin-left: 0px; } pre { margin-left: 3em; background-color: #e5e5e5; } /* Only have these colored blocks be as wide as they need be. */ pre { float: left; padding: 0.5em; margin-bottom: 1.5em; margin-top: 0; } pre + * { clear: left; } .header { background-color: #f0f0f0; } .actions { background-color: #f0f0f0; } #sidebar { background-color: #f0f0f0; } .pagecopyright, .pagelicense { background-color: #f0f0f0; font-size: small; } /* Used in `.templates/editpage.tmpl'. */ .copyright_assignment_notice { background-color: #f0f0f0; font-size: small; } /* Variable width. */ #sidebar { width: auto; /* ikiwiki's default for `width'. */ min-width: 20ex; } /* Less indentation for list items. */ #sidebar ul { padding-left: 2ex; } #sidebar ul ul { padding-left: 2.5ex; } /* Make the logo appear centered */ #sidebar img { display: block; margin-left: auto; margin-right: auto; } .table_style_1 { text-align: left; font-size: small; border-width: thin; border-style: solid; border-collapse: collapse; empty-cells: show; } .table_style_1 th { vertical-align: top; border-width: thin; border-style: solid; } .table_style_1 td { vertical-align: top; border-width: thin; border-style: dotted; }