diff --git a/README.md b/README.md index de48155..dae3666 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,9 @@ feel free to commit, leave suggestions/ideas, issues, or really anything <3 # What is TCP.WIKI ? +https://tcp.ac/i/IFAZE + + ## Project Goals secure and verifiable wiki for projects, code, courses, documents, articles, tutorials, and more diff --git a/assets/_layout.html b/assets/_layout.html index 391e7c0..645863f 100644 --- a/assets/_layout.html +++ b/assets/_layout.html @@ -24,7 +24,7 @@ {{ .Content }}
-
+
{{- if eq .Author .LastModifier -}} Authored: {{ .Author }} @ {{ .AuthoredDate.Format "2006/01/02" }} {{- else -}} diff --git a/assets/main.css b/assets/main.css index 5bfafb1..16c05e1 100644 --- a/assets/main.css +++ b/assets/main.css @@ -52,6 +52,7 @@ pre { padding: 1em; border-radius: 3px; } + /* Button styles */ nav ul li a { display: inline-block; @@ -98,21 +99,22 @@ section h2 { color: #999; } -/* reduce font size for authored and modified date */ -div.content div[style="font-size: 0.8em;"] { - font-size: 0.6em; -} - -/* add bar under authored and modified date */ -div.content div[style="font-size: 0.8em;"]:after { - content: ""; - display: block; - margin-top: 5px; +/* Added styles */ +.page-info { + font-size: 0.8em; + display: flex; + justify-content: flex-end; + align-items: center; margin-bottom: 5px; - border-bottom: 1px solid #14ee00; } -/* align authored and modified date to the right */ -div.content div[style="font-size: 0.8em;"] { - text-align: right; +.page-info-text { + margin-right: 5px; +} + +.page-info-bar { + flex-grow: 1; + height: 1px; + background-color: #555; + margin-left: 5px; }