diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/about/infrastructure/index.md | 11 | ||||
-rw-r--r-- | src/about/site/index.md | 8 | ||||
-rw-r--r-- | src/error.md | 7 | ||||
-rw-r--r-- | src/index.md | 5 | ||||
-rw-r--r-- | src/site.css | 33 |
5 files changed, 64 insertions, 0 deletions
diff --git a/src/about/infrastructure/index.md b/src/about/infrastructure/index.md new file mode 100644 index 0000000..fec3275 --- /dev/null +++ b/src/about/infrastructure/index.md @@ -0,0 +1,11 @@ +--- +title: about / infrastructure +--- + +# Infrastructure + +* OS: FreeBSD + +## Jails + +* Networking using `netgraph` (`ng_bridge`, `ng_eiface`) diff --git a/src/about/site/index.md b/src/about/site/index.md new file mode 100644 index 0000000..2cdba94 --- /dev/null +++ b/src/about/site/index.md @@ -0,0 +1,8 @@ +--- +title: about / site +--- + +# About this website + +This website source code is available at [https://git.random.sh/random.sh.git](https://git.random.sh/random.sh.git). + diff --git a/src/error.md b/src/error.md new file mode 100644 index 0000000..3b65319 --- /dev/null +++ b/src/error.md @@ -0,0 +1,7 @@ +--- +title: not found +--- + +## Not found + +Sorry... diff --git a/src/index.md b/src/index.md new file mode 100644 index 0000000..6880d63 --- /dev/null +++ b/src/index.md @@ -0,0 +1,5 @@ +--- +--- + +* [Login](/login) +{: .buttons} diff --git a/src/site.css b/src/site.css new file mode 100644 index 0000000..1c47ac0 --- /dev/null +++ b/src/site.css @@ -0,0 +1,33 @@ +body { + max-width: 960px; + margin: 0 auto; + font-size: 1.2em; + color: #0f172a; +} + +body > header > h1 > a { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + -webkit-font-smoothing: antialiased; + text-decoration: none; + color: black; +} + +body > header { + margin-bottom: 2em; +} + +ul.buttons { + list-style-type: none; +} +ul.buttons > li { + display: inline-block; + margin-right: 0.5em; +} +ul.buttons > li > a { + display: inline-block; + background-color: #d4d4d8; + color: #18181b; + padding: 0.2em 0.3em; + text-decoration: none; + border: 1px solid #52525b; +} |