💄 added bg-color on active link
Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
parent
5ce48073b8
commit
5174296254
1 changed files with 4 additions and 1 deletions
|
@ -64,7 +64,7 @@ ul, li a{
|
||||||
font-weight: 600
|
font-weight: 600
|
||||||
}
|
}
|
||||||
li :hover {
|
li :hover {
|
||||||
background-color: #ef4444;
|
background-color: #dc2626;
|
||||||
}
|
}
|
||||||
#crew-list {
|
#crew-list {
|
||||||
counter-reset: crew-index;
|
counter-reset: crew-index;
|
||||||
|
@ -75,4 +75,7 @@ li :hover {
|
||||||
#crew-list > li::before {
|
#crew-list > li::before {
|
||||||
content: counter(crew-index) ". ";
|
content: counter(crew-index) ". ";
|
||||||
}
|
}
|
||||||
|
#crew-list > li:target {
|
||||||
|
background-color: #dc2626;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Reference in a new issue