Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions config.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,9 @@
// CSS_FILE
//
// The CSS file to load to style the wiki, relative to BASE_URI

define('CSS_FILE', 'index.css');
// the time() stamp is added to the url of the css file to prevent the browser from caching the css file
// otherwise changes in the css file you made might not be immediatly applyed on the index.php of your wiki
define('CSS_FILE', 'index.css?version=' . time());



Expand Down
1 change: 1 addition & 0 deletions img/test.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
67 changes: 61 additions & 6 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,46 +9,61 @@
* Written with Coda: <http://panic.com/coda/>
*
*/



* {
font-family: Helvetica, sans-serif;
font-size: 13px;
font-size: 12px;
margin: 0;
padding: 0;
}



blockquote {
background-color: #f0f8f0;
margin: 0px 0px 12px 20px;
padding-top: 4px 10px 4px 10px;
margin: 0px 12px;
padding: 4px 10px;
}



form {
display: inline;
}



li {
line-height: 1.5em;
}



h1 {
font-size: 20px;
font-weight: bold;
margin-bottom: 8px;
}



h2 {
font-size: 16px;
font-weight: bold;
margin-bottom: 8px;
}



h3 {
font-size: 13px;
font-weight: bold;
margin-bottom: 8px;
}



hr {
border-top: 1px solid #cccccc;
border-bottom: 0;
Expand All @@ -58,24 +73,32 @@ hr {
margin-bottom: 12px;
}



ul {
padding-left: 12px;
margin-left: 12px;
margin-bottom: 12px;
list-style-position: inside;
}



ol {
margin-left: 12px;
margin-bottom: 12px;
padding-left: 12px;
list-style-position: inside;
}



p {
margin: 12px 12px 12px 12px;
}



pre {
font-family: Menlo, Courier, monospace;
font-size: 11px;
Expand All @@ -90,30 +113,50 @@ pre {
word-wrap: break-word; /* Internet Explorer 5.5+ */
}



code {
font-family: Menlo, Courier, monospace;
font-size: 11px;
}

table {
border-collapse: collapse;

/* --------------------------------------------
table, th, td {
border: 1px solid black;
}




th, td {
background-color: #96D4D4;
}
-----------------------------------------------
*/


table, td {
padding: 2px;
}



textarea {
font-family: Menlo, Courier, monospace;
font-size: 11px;
width: 99%;
background-color: #ffffee;
}



.main {
padding: 8px;
}



.note {
background-color: #ffffcc;
padding: 4px;
Expand All @@ -122,6 +165,8 @@ textarea {
border: solid 1px #666644;
}



.titlebar {
background-color: #222222;
background: -webkit-gradient(linear, left top, left bottom, from(#555555), to(#000000));
Expand All @@ -131,29 +176,39 @@ textarea {
padding: 4px 4px 4px 12px;
}



.titledate {
font-size: 10px;
color: #999999;
}



.toolbar {
background-color: #777777;
background: -webkit-gradient(linear, left top, left bottom, from(#666666), to(#444444));
font-size: 12px;
padding: 4px 4px 4px 12px;
}



a.tool {
font-size: 11px;
margin-right: 8px;
color: #eeeeee;
}



input.tool {
font-size: 11px;
color: #000000;
}



img {
max-width: 100%;
height: auto;
Expand Down