blob: 0ae7640dd030cebc6cc05944120c370bfaefadc9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
.footer > div:nth-last-child(2) ul {
transition: opacity 0.2s ease;
margin: auto;
}
.footer:not(:hover) > div:nth-last-child(2) ul {
opacity: 30%;
}
/* The `© 2023 GitHub, Inc.` text */
.footer > div:nth-last-child(2) > div span {
display: none !important;
}
.footer > div:nth-last-child(2) a {
color: var(--color-text-disabled, #666);
}
|