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:
parent
f7d3437dce
commit
8679ee9598
1 changed files with 15 additions and 1 deletions
|
@ -1,5 +1,19 @@
|
||||||
/* your custom css */
|
/* 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) {
|
@media only screen and (min-device-width: 360px) and (max-device-width: 736px) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue