mostly good for release

This commit is contained in:
sundae 2025-06-25 13:08:50 +03:00
parent 8fc7eff67b
commit b626e6265e
No known key found for this signature in database
32 changed files with 425 additions and 169 deletions

View file

@ -15,6 +15,20 @@
color: transparent;
}
}
ul:not([role]) li {
&::before {
content: "";
width: 20px;
height: 20px;
position: absolute;
mask-image: var(--paw);
mask-size: contain;
margin: 0.4rem 0 0 -2rem;
}
&::marker {
content: none;
}
}
#pkmn {
display: flex;
flex-wrap: wrap;
@ -65,14 +79,19 @@ body [id]:not(:nth-child(1)) ul {
#pansexual {
background-image: linear-gradient(#f09 33.33%, #ffd700 0 66.66%, #00bfff 0);
}
#bio {
& p,
ul {
#bio,
#interests {
& ul {
font-family: "Urbanist", sans-serif;
font-size: 1.3rem;
}
& ul {
margin: 0;
display: flex;
flex-direction: column;
}
& p {
font-size: 1.1rem;
font-family: "Rubik", sans-serif;
font-weight: bold;
}
& span[id] {
background-clip: text;
@ -88,13 +107,12 @@ body [id]:not(:nth-child(1)) ul {
& ul {
margin: 0;
padding: var(--pad-l) 0 0 0;
justify-content: start;
}
& li {
display: flex;
& a {
padding: var(--pad-sm);
background-color: transparent;
background: transparent;
text-decoration: none;
}
& span {
@ -121,6 +139,7 @@ body [id]:not(:nth-child(1)) ul {
display: flex;
padding: inherit;
margin: 0;
background-color: unset;
}
}
#collection div:has(img)::after {
@ -133,3 +152,15 @@ body [id]:not(:nth-child(1)) ul {
margin: -1.5rem 0 0 -0.5rem;
pointer-events: none;
}
@media screen and (max-width: 920px) {
#collection {
display: flex;
flex-direction: column;
& ul {
justify-content: center;
}
& li a {
padding: 0;
}
}
}