Update style.css

This commit is contained in:
Clay 2021-12-29 21:56:12 -05:00 committed by GitHub
parent 5ff0dd7e78
commit e2b4b4bfb7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}