site

Website's source files.
Log | Files | Refs | Submodules | LICENSE

commit d469a17a52dc587dac9e103889b682d208ac1045
parent bb43d106f3fd7045a4416301df0855e4bbb04e97
Author: Ryan Jeffrey <ryan@ryanmj.xyz>
Date:   Mon,  7 Feb 2022 14:34:53 -0800

Hover works again, just use default monospace font, no more long lines

Diffstat:
Mpublic/css/terminal.css | 2+-
Mpublic/front.html | 16++++++++++++----
Mviews/layouts/main.handlebars | 10+++++-----
3 files changed, 18 insertions(+), 10 deletions(-)

diff --git a/public/css/terminal.css b/public/css/terminal.css @@ -168,7 +168,7 @@ body { background-size: cover; /* Resize the background image to cover the entire container */ background-size: cover; background-repeat: no-repeat; - font-family: "Hasklig", "Inconsolata", "Courier New", monospace; + font-family: monospace; font-size: 1.1em; -webkit-font-smoothing : none; -moz-font-smoothing: never; diff --git a/public/front.html b/public/front.html @@ -1,15 +1,23 @@ <p> -This site is a celebration of old computers and technology (or, what is old and nostalgic to me). Everything here is designed to look like a Linux desktop from between the years 2008-2012. That was the last time you could still feel 90's era optimism about technology (or the future in general), and the first time I used Linux (my father started me on Ubuntu 08.04 when I was 10). + This site is a celebration of old computers and technology (or, what is old and + nostalgic to me). Everything here is designed to look like a late 2000's + or early 2010's Linux desktop since that was the last time you could still feel + 90's era optimism about technology (or the future in general). </p> <p> -In current year it's impossible to feel anything but disgust and disappointment over the state of technology. Social media has enabled conformism in a way never before thought possible. Every electronic device is a government surveillance machine. Unix is <span class="underline">still</span> using X11. Perhaps the Vi guy was right <a href="https://www.wired.com/2000/04/joy-2/">to go full AnPrim</a>. + In current year it's impossible to feel anything but disgust and disappointment + over the state of technology. Social media has enabled conformism in a way + never before thought possible. Every electronic device is a government surveillance + machine. Unix is <span class="underline">still</span> using X11. Perhaps + the Vi guy was right <a href="https://www.wired.com/2000/04/joy-2/">to go full AnPrim</a>. </p> <p> -But this site at www.ryanmj.xyz <span class="underline">is not</span> about that. Instead, this is a place to LARP and pretend it's still 2008. It is a place where we can live in a world before Jack Dorsey literally ruined everything. + But this site at www.ryanmj.xyz <span class="underline">is not</span> about that. + Instead, this is a place to LARP and pretend it's still 2008. </p> <p> -<a href="https://openlibrary.org/works/OL2286765W/Atomised?edition=atomised00houe">This website is dedicated to mankind.</a> + <a href="https://openlibrary.org/works/OL2286765W/Atomised?edition=atomised00houe">This website is dedicated to mankind.</a> </p> diff --git a/views/layouts/main.handlebars b/views/layouts/main.handlebars @@ -21,27 +21,27 @@ <div id="taskbar"> <div id="home"> - <a href="/"><img src="res/user-home.png" alt="Homepage" ></a> + <a href="/"><img src="res/user-home.png" alt="Homepage" class="taskimg"></a> <h4>Home</h4> </div> <div id="blog"> - <a href="/posts/"><img src="res/folder-documents.png" alt="Blog" ></a> + <a href="/posts/"><img src="res/folder-documents.png" alt="Blog" class="taskimg"></a> <h4>Blog</h4> </div> <div id="files"> - <a href="/files/"><img src="res/ktorrent.png" alt="Files" ></a> + <a href="/files/"><img src="res/ktorrent.png" alt="Files" class="taskimg"></a> <h4>Files</h4> </div> <div id="git-server"> - <a href="https://git.ryanmj.xyz"><img src="res/folder-git.png" alt="git" ></a> + <a href="https://git.ryanmj.xyz"><img src="res/folder-git.png" alt="git" class="taskimg"></a> <h4>Git Server</h4> </div> <div id="contact-me"> - <a href="mailto:ryan@ryanmj.xyz"><img alt="Email me" src="res/kopete.png" /></a> + <a href="mailto:ryan@ryanmj.xyz"><img alt="Email me" src="res/kopete.png" class="taskimg"></a> <h4>Contact Me</h4> </div> </div>