diff options
| author | arf20 <aruizfernandez05@gmail.com> | 2025-12-03 16:02:35 +0100 |
|---|---|---|
| committer | arf20 <aruizfernandez05@gmail.com> | 2025-12-03 16:02:35 +0100 |
| commit | 1b50d699672a0976be64fd36f53b592ef9ef6a78 (patch) | |
| tree | b40c4b880a1113797b4cd80b2088cee01ad691aa | |
| parent | 9617a4239955afedd80e423f5d6a52199626d00d (diff) | |
| download | arfnet2-status-1b50d699672a0976be64fd36f53b592ef9ef6a78.tar.gz arfnet2-status-1b50d699672a0976be64fd36f53b592ef9ef6a78.zip | |
remove arfnet asset dependency
| -rw-r--r-- | arfnet_logo.png | bin | 0 -> 78409 bytes | |||
| -rw-r--r-- | index.htm.tmpl | 4 | ||||
| -rw-r--r-- | style.css | 53 |
3 files changed, 55 insertions, 2 deletions
diff --git a/arfnet_logo.png b/arfnet_logo.png Binary files differnew file mode 100644 index 0000000..82adbef --- /dev/null +++ b/arfnet_logo.png diff --git a/index.htm.tmpl b/index.htm.tmpl index 3278b39..4c192e2 100644 --- a/index.htm.tmpl +++ b/index.htm.tmpl @@ -2,7 +2,7 @@ <html> <head> <meta charset="UTF-8"> - <link rel="stylesheet" type="text/css" href="https://arf20.com/style.css"> + <link rel="stylesheet" type="text/css" href="/style.css"> <title>ARFNET</title> <style> table, th, td { @@ -38,7 +38,7 @@ td.w-last { <body> <header><a href="http://arf20.com"> - <img src="http://arf20.com/arfnet_logo.png" width="64"><span class="title"><strong>ARFNET</strong></span> + <img src="/arfnet_logo.png" width="64"><span class="title"><strong>ARFNET</strong></span> </a></header> <hr> <main> diff --git a/style.css b/style.css new file mode 100644 index 0000000..fb4f743 --- /dev/null +++ b/style.css @@ -0,0 +1,53 @@ +@font-face { + font-family: 'terminus'; + src: url('/fonts/terminus.ttf'); +} + +@font-face { + font-family: 'fixedsys'; + src: url('/fonts/FSEX300.ttf'); +} + +@font-face { + font-family: 'monospace'; + font-weight: 500; + src: url('/fonts/LiberationMono-Regular.ttf'); +} + +a:link { + color: #61AFEF; +} + +a:visited { + color: #C678DD; +} + +body { + background-color: #282C34; + color: #abb2bf; + + font-family: monospace, system-ui; + font-weight: 500; + + max-width: 1000px; + margin-left: auto; + margin-right: auto; +} + +.header * { + display: inline-block; + vertical-align: middle; +} + +.title { + font-size: 36px; + vertical-align: middle; + font-family: fixedsys; + display: inline-block; +} + +* { + vertical-align: middle; + max-width: 100%; +} + |
