0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-30 22:34:10 -05:00

chore: highlight links on website

This commit is contained in:
Juan Picado @jotadeveloper 2018-03-12 07:58:38 +01:00
parent f7d3437dce
commit 8679ee9598
No known key found for this signature in database
GPG key ID: 18AC54485952D158

View file

@ -1,5 +1,19 @@
/* your custom css */
.mainContainer .wrapper a,
.inner .projectIntro a {
background-color: rgba(10, 78, 31, 0.15);
color: #1a1a1a;
transition: all 0.25s ease-out;
text-decoration: underline;
}
.mainContainer .wrapper a:hover,
.inner .projectIntro a:hover {
background-color: rgba(10, 78, 31, 0.35);
text-decoration: none !important;
}
@media only screen and (min-device-width: 360px) and (max-device-width: 736px) {
}