From 2329a07047c50f9618764dacee23a3ae71dbb8c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marlow=20D=2E=20Alfonso=20D=C3=ADaz?= Date: Sun, 28 Sep 2025 18:34:35 -0400 Subject: feat: added built files --- public/http/assets/styles.css | 106 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 public/http/assets/styles.css (limited to 'public/http/assets/styles.css') diff --git a/public/http/assets/styles.css b/public/http/assets/styles.css new file mode 100644 index 0000000..62e5edf --- /dev/null +++ b/public/http/assets/styles.css @@ -0,0 +1,106 @@ +@font-face { + font-family: Fairfax; + src: url('./assets/fonts/Fairfax.ttf'); +} + +* { + padding: 0; + margin: 0; +} + +body { + background-color: #282828; + color: #ebdbb2; + font-family: Fairfax, monospace; + font-size: 12px; +} + +.content { + background-color: #3c3836; + padding: 9px; + margin-left: auto; + margin-right: auto; + margin-top: 8px; + margin-bottom: 8px; + max-width: 480px; +} + +h1, h2, h3 { + margin-top: 12px; + weight: bold; +} + +h1 { + font-size: 24px; +} +h1::before { + content: "* "; +} + +h2 { + font-size: 12px; +} +h2::before { + content: "** "; +} + +h3 { + font-size: 12px; +} + +h3::before { + content: "*** "; +} + +li { + padding-left: 18px; + list-style-type: none; +} + +li::before { + content: "• "; +} + +a { + color: #d65d0e; + text-decoration: none; +} + +p::before { + content: "¶ "; + font-weight: bold; +} + +#thin-badges { + display: inline-block; + position: fixed; + left: 8px; + bottom: 8px; +} + +#thin-badges img { + display: block; +} + +hr { + border: 1px solid #ebdbb2; + margin-top: 2px; + margin-bottom: 2px; +} + +.underline { + text-decoration: underline; +} + +#avatar { + float: right; + width: 25%; + margin-left: 4px; +} + +#ads { + border: none; + width: 722px; + height: 98px; + max-width: 100%; +} -- cgit v1.2.3