2024-01-30 00:32:40 +01:00
|
|
|
/* Unix CSS that can optionally be used for the wiki. */
|
|
|
|
|
|
|
|
body
|
|
|
|
{
|
|
|
|
padding: 20px 40px 0;
|
|
|
|
font-family: "Lucida Console", monospace;
|
2024-01-30 07:54:47 +01:00
|
|
|
color: #0d0;
|
2024-01-30 00:32:40 +01:00
|
|
|
margin: auto;
|
2024-01-30 07:54:47 +01:00
|
|
|
background-color: #0e0e0e;
|
2024-01-30 00:32:40 +01:00
|
|
|
text-align: justify;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1:first-of-type:after
|
|
|
|
{
|
|
|
|
content: ": HAX0R edition";
|
|
|
|
}
|
|
|
|
|
2024-01-30 07:54:47 +01:00
|
|
|
b, strong
|
2024-01-30 00:32:40 +01:00
|
|
|
{
|
2024-01-30 07:54:47 +01:00
|
|
|
color: #ccc;
|
2024-01-30 00:32:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
h1:before
|
|
|
|
{
|
|
|
|
content: "# ";
|
|
|
|
}
|
|
|
|
|
|
|
|
h2:before
|
|
|
|
{
|
|
|
|
content: "## ";
|
|
|
|
}
|
|
|
|
|
|
|
|
h3:before
|
|
|
|
{
|
|
|
|
content: "### ";
|
|
|
|
}
|
|
|
|
|
|
|
|
p
|
|
|
|
{
|
|
|
|
margin: 20px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
em, i
|
|
|
|
{
|
|
|
|
color: #888;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr
|
|
|
|
{
|
|
|
|
margin: 20px 0 20px;
|
2024-01-30 07:54:47 +01:00
|
|
|
border: 1px solid #ccc;
|
2024-01-30 00:32:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3
|
|
|
|
{
|
|
|
|
margin: 30px 0 10px;
|
2024-01-30 07:54:47 +01:00
|
|
|
border-bottom: 2px solid #0e0;
|
|
|
|
color: #eee;
|
|
|
|
background-color: #030;
|
|
|
|
padding: 5px 0 0;
|
2024-01-30 00:32:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ul, ol
|
|
|
|
{
|
|
|
|
padding: 0;
|
|
|
|
margin: 4px 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul
|
|
|
|
{
|
2024-01-30 07:54:47 +01:00
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul li:before
|
|
|
|
{
|
|
|
|
content: "-";
|
|
|
|
margin: 0 5px;
|
|
|
|
color: #eee;
|
2024-01-30 00:32:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
li
|
|
|
|
{
|
2024-01-30 07:54:47 +01:00
|
|
|
margin: 2px 0;
|
2024-01-30 00:32:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pre, code
|
|
|
|
{
|
|
|
|
font-family: "Lucida Console", monospace;
|
|
|
|
background-color: #111;
|
2024-01-30 07:54:47 +01:00
|
|
|
color: #ddd;
|
2024-01-30 00:32:40 +01:00
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre
|
|
|
|
{
|
|
|
|
padding: 3px 0 0 15px;
|
2024-01-30 07:54:47 +01:00
|
|
|
border-left: 2px solid #0e0;
|
2024-01-30 00:32:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
table
|
|
|
|
{
|
|
|
|
border-collapse: collapse;
|
2024-01-30 07:54:47 +01:00
|
|
|
margin: 40px 20px;
|
2024-01-30 00:32:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
table td, th
|
|
|
|
{
|
2024-01-30 07:54:47 +01:00
|
|
|
border: 1px solid #ccc;
|
|
|
|
padding: 6px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
th
|
|
|
|
{
|
|
|
|
background-color: #444;
|
|
|
|
text-align: left;
|
2024-01-30 00:32:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a
|
|
|
|
{
|
2024-01-30 07:54:47 +01:00
|
|
|
color: #04f;
|
2024-01-30 00:32:40 +01:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dead
|
|
|
|
{
|
2024-01-30 07:54:47 +01:00
|
|
|
color: #f20;
|
2024-01-30 00:32:40 +01:00
|
|
|
}
|