You've already forked AstralRinth
forked from xxxOFFxxx/AstralRinth
33 lines
453 B
Plaintext
33 lines
453 B
Plaintext
.link {
|
|
color: var(--color-link);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
line-height: 100%;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.link-group {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
|
|
.link {
|
|
color: var(--color-text);
|
|
|
|
&:hover {
|
|
color: var(--color-link);
|
|
}
|
|
|
|
&:last-child:nth-child(2),
|
|
&:last-child:nth-child(5),
|
|
&:last-child:nth-child(8) {
|
|
margin-right: auto;
|
|
}
|
|
}
|
|
}
|