diff options
| author | Daniel Jones <daniel@danieljon.es> | 2025-02-19 16:07:25 +1100 | 
|---|---|---|
| committer | Daniel Jones <daniel@danieljon.es> | 2025-02-19 16:07:25 +1100 | 
| commit | 9fd48fd62352cb616c91a77b83b707f606304153 (patch) | |
| tree | 7205eb1da81fed3579ee7a12e6af9988efaff295 | |
| parent | eb63f5eda94f9cb3b62300fb1d0c55451b041ecf (diff) | |
| download | websitegenerator-9fd48fd62352cb616c91a77b83b707f606304153.tar.gz websitegenerator-9fd48fd62352cb616c91a77b83b707f606304153.zip | |
change text to be neon and more readable
| -rw-r--r-- | .gitignore | 36 | ||||
| -rw-r--r-- | template.txt | 15 | 
2 files changed, 50 insertions, 1 deletions
| diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3186669 --- /dev/null +++ b/.gitignore @@ -0,0 +1,36 @@ +# Object files +*.o + +# Executables +generate +guestbook.cgi + +# IDE files +.ycm_extra_conf.py +websitegenerator.cflags +websitegenerator.config +websitegenerator.creator +websitegenerator.creator.user +websitegenerator.cxxflags +websitegenerator.files +websitegenerator.includes + +# Tags and scope files +tags +cscope.out + +# Backup files +*.bup + +# Generated output +output/ + +# Shell scripts +live.sh +pushlive.sh +Agave-Regular.woff2 +allys_sad_handwriting-webfont.woff +allys_sad_handwriting-webfont.woff2 +content/ +guestbook.c.old +music.html diff --git a/template.txt b/template.txt index bc993fc..bbf10ad 100644 --- a/template.txt +++ b/template.txt @@ -44,6 +44,9 @@ body  	color: white;  	background-color: #281b38;  	background-image: url('https://danieljones.au/media/bg.gif'); +	text-shadow: 0 0 0.2em rgba(0, 255, 255, 0.8), +               0 0 0.4em rgba(0, 255, 255, 0.6), +               0 0 0.6em rgba(0, 255, 255, 0.4);  }  img{max-width: 100%; max-height: 100%; overflow: hidden;} @@ -112,8 +115,18 @@ max-width: 100%;  }  a { -  color: #c625ef; +  color: #ff80ff;  	text-decoration: none; +	text-shadow: 0 0 0.2em rgba(255, 0, 255, 0.8), +               0 0 0.4em rgba(255, 0, 255, 0.6), +               0 0 0.6em rgba(255, 0, 255, 0.4); +} + +a:hover { +  color: #00ffff; +	text-shadow: 0 0 0.2em rgba(0, 255, 255, 0.8), +               0 0 0.4em rgba(0, 255, 255, 0.6), +               0 0 0.6em rgba(0, 255, 255, 0.4);  }  .js-message  { | 
