We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Note the box-shadow and linear-gradient:
box-shadow
linear-gradient
.avr_links a:visited:hover, .avr_links a:focus, .avr_links a:focus:hover, .avr_links a:hover, .avr_links a:active, .avr_links a.avr_links-active { color: #000; background-image: linear-gradient( transparent, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .1) ); } .avr_links a:focus { outline: 0; } .avr_links a:active { box-shadow: 0 0 0 .05em rgba(0, 0, 0, 0.1) inset, 0 0 1em rgba(0, 0, 0, 0.2) inset; } /* Sub-lists: */ .avr_links ul a .avr_links ul a:visited:hover, .avr_links ul a:focus, .avr_links ul a:focus:hover, .avr_links ul a:hover, .avr_links ul a:active, .avr_links ul a.avr_links-active { background-image: linear-gradient( rgba(19, 141, 156, 0.25), rgba(19, 141, 156, 0.25) ), linear-gradient( transparent, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .1) ); }
Using linear-gradient with no gradient to fake color overlay; this allows us to pseudo-tint the existing background color.
Example of the above CSS:
Full example: https://gist.github.com/mhulse/047e11c89ec59f7fdabc26d252a08f9a
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Note the
box-shadow
andlinear-gradient
:Using
linear-gradient
with no gradient to fake color overlay; this allows us to pseudo-tint the existing background color.Example of the above CSS:
Full example: https://gist.github.com/mhulse/047e11c89ec59f7fdabc26d252a08f9a
The text was updated successfully, but these errors were encountered: