site

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

commit 3668279511c0e5c62f912a3ff93237b989cb3398
parent 2df4f04533ba14797b8236d3eb15ba35ab2cc7c8
Author: Ryan Jeffrey <ryan@ryanmj.xyz>
Date:   Fri, 19 Feb 2021 01:22:38 -0800

Glowing text, new background image

Diffstat:
Mcss/rgb.css | 3+--
Mcss/terminal.css | 57++++++++++++++++++++++++++++++++++++++++++++++++++++-----
Mpublish.el | 2+-
3 files changed, 54 insertions(+), 8 deletions(-)

diff --git a/css/rgb.css b/css/rgb.css @@ -660,4 +660,4 @@ --white:#ffffff; --kde_bg:#4377a2; -}- \ No newline at end of file +} diff --git a/css/terminal.css b/css/terminal.css @@ -1,6 +1,30 @@ @import './rgb.css'; @import './main.css'; +/* unvisited link */ +a:link { + color: var(--dodger_blue4); + text-shadow: 0 0 4px var(--dodger_blue4); +} + +/* visited link */ +a:visited { + color: var(--dark_orchid2); + text-shadow: 0 0 4px var(--dark_orchid2); +} + +/* mouse over link */ +a:hover { + color: var(--green2); + text-shadow: 0 0 4px var(--green2); +} + +/* selected link */ +a:active { + color: var(--dodger_blue4); + text-shadow: 0 0 4px var(--dodger_blue4); +} + #main-page-title { margin: 0 auto; padding: 0; @@ -18,7 +42,7 @@ h4 { margin-top: 0; color: white; font-color: white; - font-family: "Cantarell", "MyCantarell"; + font-family: "Cantarell", Sans-Serif; font-size: 0.8em; } @@ -90,7 +114,28 @@ h4 { margin: 0 auto; padding: 0; white-space: pre-wrap; - color: var(--grey); + color: var(--white); + text-shadow: 0 0 4px var(--white); +} + +.prompt1 { + color: var(--bisque4); + text-shadow: 0 0 4px var(--bisque4); +} + +.prompt2 { + color: var(--blue); + text-shadow: 0 0 4px var(--blue); +} + +.prompt3 { + color: var(--yellow); + text-shadow: 0 0 4px var(--yellow); +} + +.prompt4 { + font-weight: bold; + text-shadow: 0 0 4px var(--white); } h2 { @@ -99,11 +144,13 @@ h2 { } body { - /*background-image: url(../res/back01.jpg);*/ - background: #2d6189; + background-color: #2d6189; + background-image: url('../res/lain.jpg'); + background-repeat: no-repeat; /* Do not repeat the image */ + background-size: cover; /* Resize the background image to cover the entire container */ background-size: cover; background-repeat: no-repeat; - font-family: Inconsolata, "Courier New", monospace; + font-family: "Hasklig", "Inconsolata", "Courier New", monospace; font-size: 1.1em; -webkit-font-smoothing : none; -moz-font-smoothing: never; diff --git a/publish.el b/publish.el @@ -63,7 +63,7 @@ (goto-char (point-min)) (while (search-forward "__PROMPT__" (point-max) t) (kill-backward-chars (length "__PROMPT__")) - (insert "@@html:<span style='color: var(--bisque4)'>ryan</span><span style='color:blue'>@</span><span style='color:yellow'>themainframe</span><span style='font-weight:bold'></span>@@")))) + (insert "@@html:<span class=\"prompt1\">ryan</span><span class=\"prompt2\">@</span><span class=\"prompt3\">themainframe</span><span class=\"prompt4\"></span>@@")))) (defun do-ls-on-list (files)