From e2b4b4bfb74c8584c2c6bc8aa3fc50e63092f9df Mon Sep 17 00:00:00 2001 From: Clay <ClayGarth@users.noreply.github.com> Date: Wed, 29 Dec 2021 21:56:12 -0500 Subject: [PATCH] Update style.css --- style.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/style.css b/style.css index 811faf5..94ff4d5 100644 --- a/style.css +++ b/style.css @@ -106,9 +106,25 @@ a:visited { /* mouse over link */ a:hover { color: darkgrey; + position: relative; } +.litecoin:hover:after { + content: url(https://gaming.claytonia.net/assets/images/litecoinQR.png); /* no need for qoutes */ + display: block; + position: absolute; + left: 123px; /* change this value to one that suits you */ + top: 56px; /* change this value to one that suits you */ +} +.bitcoin:hover:after { + content: url(https://gaming.claytonia.net/assets/images/bitcoinQR.png); /* no need for qoutes */ + display: block; + position: absolute; + left: 123px; /* change this value to one that suits you */ + top: 56px; /* change this value to one that suits you */ +} + a:link { text-decoration: none; }