darktheme and updated readme

This commit is contained in:
legitnull 2023-04-02 13:24:07 -06:00
parent 944cf9fb8b
commit 12e3910ce4
3 changed files with 23 additions and 8 deletions

@ -1,3 +1,8 @@
# TCP.WIKI
H0wdy!!!
H0wdy!!!
## TODO
- [ ] MANY FUCKING THINGS
- [ ] Webhook support for auto pull on push/update of the git repo
- [ ] Git Branch support

@ -4,12 +4,12 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TCP Wiki</title>
<title>TCP.WIKI</title>
<link rel="stylesheet" href="/assets/main.css">
</head>
<body>
<header>
<h1>TCP Wiki</h1>
<h1>TCP.WIKI</h1>
<nav>
<ul>
<li><a href="/">Home</a></li>

@ -5,6 +5,8 @@ body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 20px;
background-color: #131313;
color: #14ee00;
}
h1, h2, h3, h4, h5, h6 {
@ -12,18 +14,18 @@ h1, h2, h3, h4, h5, h6 {
}
a {
color: #333;
color: #059ce2;
text-decoration: none;
}
a:hover {
color: #777;
color: #f700ff;
}
header {
padding: 1em;
background-color: #f1f1f1;
border-bottom: 1px solid #ccc;
background-color: #5555;
border-bottom: 1px solid #555;
}
header h1 {
@ -40,3 +42,11 @@ nav ul li {
display: inline;
margin-right: 1em;
}
/* Add the following rule to improve code block appearance */
pre {
background-color: #5555;
padding: 1em;
border-radius: 3px;
}