shithub: sirjofri_de_docs

Download patch

ref: e1bbc4a737650ab32573dab290560907cf94ef5e
parent: 212c3cc425b432554d071dbee201de6363d88438
author: sirjofri <sirjofri@sirjofri.de>
date: Mon Feb 2 08:20:50 EST 2026

adds index.ht (was missing), adds style.css

--- /dev/null
+++ b/common/style.css
@@ -1,0 +1,134 @@
+body {
+	font-family: sans-serif;
+	max-width: 960px;
+	margin: auto;
+	padding: 10px;
+	background: linear-gradient(to right, #ffff 20%, #fffd), url("/common/allover.png") center fixed;
+	background-size: cover;
+}
+body > ul:first-of-type {
+	display: block;
+	border: solid 1px #ccc;
+	padding: 5px;
+	list-style-type: none;
+}
+body > ul:first-of-type > li ul {
+	margin: 10px 0px;
+}
+body > ul:first-of-type ul li {
+	padding: 5px 0px;
+}
+body > p:first-of-type,
+body > p:last-of-type {
+	display: block;
+	border: solid 1px #ccc;
+	padding: 5px;
+	margin: 30px 0px;
+	text-align: center;
+}
+a {
+	text-decoration: none;
+}
+h2 {
+	margin-top: 50px;
+}
+img, video {
+	display: block;
+	max-width: 100%;
+	width: auto;
+	object-fit: cover;
+	margin-left: auto;
+	margin-right: auto;
+	margin-top: 20px;
+	margin-bottom: 20px;
+}
+pre:has(code) {
+	display: block;
+	width: 100%;
+	border: solid 1px #ccc;
+	padding: 4px;
+	overflow: scroll;
+}
+blockquote {
+	width: 100%;
+	border: solid #aaa;
+	border-width: 0px 0px 0px 5px;
+	padding-left: 7px;
+	margin-left: 0px;
+}
+
+.bar {
+	position: fixed;
+	width: 10px;
+	height: 65%;
+}
+
+.bar:first-of-type {
+	left: 0;
+	bottom: 0;
+}
+
+.bar:last-of-type {
+	right: 0;
+	top: 0;
+}
+
+.redbar {
+	background: #cd1316;
+	position: fixed;
+	width: 10px;
+	height: 65%;
+}
+
+.developers {
+	background: #aa9a00;
+}
+.game {
+	background: #009a00;
+}
+.performance {
+	background: #ba0000;
+}
+.team {
+	background: #2f6aff;
+}
+
+.plugin-icon {
+	display: inline-block;
+	width: 50px;
+	height: 50px;
+	position: relative;
+	top: 15px;
+	background: url("/SpatialAssetRecommender/media/Icon.svg") center;
+	background-size: cover;
+	filter: drop-shadow(0px 0px 6px black);
+}
+
+@media screen and (max-width: 1000px) {
+.bar {
+	width: 5px;
+}
+}
+
+@media (prefers-color-scheme: dark) {
+body {
+	background: linear-gradient(to right, #000, #222e), url("/common/allover.png") center fixed;
+	background-size: cover;
+	color: white;
+}
+body > p:first-of-type,
+body > p:last-of-type,
+body > ul:first-of-type,
+pre:has(code) {
+	border-color: #777;
+}
+blockquote {
+	border-color: #555;
+}
+a:link {
+	color: #66f;
+}
+a:visited {
+	color: #a6f;
+}
+}
\ No newline at end of file
--- /dev/null
+++ b/index.ht
@@ -1,0 +1,8 @@
+<p>This page collects links to all documentation pages of sirjofri's software.</p>
+<p>Links to the source code and more details are generally available on the individual documentation pages.</p>
+<ul>
+<li><a href="https://github.com/sirjofri/AutoMenus/blob/main/Readme.md">Auto Menus</a> – Unreal Plugin for automatically generating menus for your Blutility tools</li>
+<li><a href="https://github.com/sirjofri/EditorScreenshot/blob/main/Readme.md">Editor Screenshot</a> – Plugin for automatically capturing reproducible screenshots of Unreal Editor windows</li>
+<li><a href="/Scalem/">Scalem</a> – Plugin for setting up scalability in Unreal projects</li>
+<li><a href="https://github.com/sirjofri/SlateStyleBrowser/blob/master/Readme.md">Slate Style Browser</a> – Browse all registered Slate Styles (Unreal Plugin)</li>
+</ul>
--