diff options
author | davidovski <david@davidovski.xyz> | 2021-10-31 00:31:46 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-10-31 00:31:46 +0100 |
commit | 3a396753ef985699b52dd056796f338415c99b37 (patch) | |
tree | ba121cd2215e12d4ecbc8a0393aa66faba20b44c /resources | |
parent | 83ea97d28fe569e90311713379fdb47c453a3a1c (diff) |
added gif image generation
Diffstat (limited to 'resources')
-rw-r--r-- | resources/style.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/resources/style.css b/resources/style.css index b0c66fa..76b4338 100644 --- a/resources/style.css +++ b/resources/style.css @@ -23,9 +23,9 @@ body { background-color: var(--bg-light); background-image: url("/images/bg.gif"); background-repeat: repeat; + background-attachment: fixed; /*background-image: url("https://davidovski.xyz/images/bg.png");*/ - background-position: absolute; color: var(--fg); font-family: mononoki; font-size: 16px; @@ -38,6 +38,11 @@ a { text-decoration: none; } +a:hover { + color: var(--cyan); + text-decoration: underline; +} + h1 { color: var(--white); } |