From 4746c59951dcd304e808b1c5e6528ca37e6a76c9 Mon Sep 17 00:00:00 2001 From: legitnull Date: Sun, 2 Apr 2023 14:06:15 -0600 Subject: [PATCH] added layout.html and main.css --- assets/_layout.html | 24 +++++++++++++++++++++ assets/main.css | 52 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 assets/_layout.html create mode 100644 assets/main.css diff --git a/assets/_layout.html b/assets/_layout.html new file mode 100644 index 0000000..18e5fdd --- /dev/null +++ b/assets/_layout.html @@ -0,0 +1,24 @@ + + + + + + + TCP.WIKI + + + +
+

TCP.WIKI

+ +
+
+ {{.Content}} +
+ + diff --git a/assets/main.css b/assets/main.css new file mode 100644 index 0000000..64d7ff4 --- /dev/null +++ b/assets/main.css @@ -0,0 +1,52 @@ +/* assets/main.css */ + +/* placeholder for better sytle */ +body { + font-family: Arial, sans-serif; + line-height: 1.6; + margin: 20px; + background-color: #131313; + color: #14ee00; +} + +h1, h2, h3, h4, h5, h6 { + font-weight: bold; +} + +a { + color: #059ce2; + text-decoration: none; +} + +a:hover { + color: #f700ff; +} + +header { + padding: 1em; + background-color: #5555; + border-bottom: 1px solid #555; +} + +header h1 { + display: inline-block; + margin-right: 1em; +} + +nav ul { + list-style: none; + padding: 0; +} + +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; +} +