add codeblock highlighting, honestly a lot of stuff was changed, iceshrimp and sharkey updates + tips
All checks were successful
/ build (push) Successful in 3m22s

This commit is contained in:
Ruben 2025-07-01 23:18:31 -05:00
commit ecd3a73aaa
No known key found for this signature in database
GPG key ID: 8EA836555FB6D9A5
14 changed files with 392 additions and 87 deletions

View file

@ -343,40 +343,11 @@ details.styled {
}
section {
padding: 1.4rem;
padding: 1rem;
text-align: start !important;
ul {
margin: -.5rem -.5rem -.5rem -1rem;
}
}
.card {
background-color: var(--background);
border-radius: 1rem;
border: .1rem solid var(--border);
margin-bottom: 1.4rem;
padding: 1rem;
h2 {
margin-top: 0rem !important;
margin-bottom: .4rem !important;
}
}
.card.last {
margin-bottom: unset !important;
}
.card.tilde-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
margin-bottom: unset !important;
}
.card.question {
p {
margin: .6rem !important;
margin: 0 0 0 -.5rem;
}
}
@ -397,6 +368,37 @@ details.styled[open] {
}
}
/* card styling */
.card {
background-color: var(--background);
border-radius: 1rem;
border: .1rem solid var(--border);
gap: .5rem;
margin-bottom: 1.4rem;
padding: 1rem;
h2 {
margin-top: 0rem !important;
margin-bottom: .4rem !important;
}
}
.card.last {
margin-bottom: unset !important;
}
.card.tilde-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
margin-bottom: unset !important;
}
.card.question {
p {
margin: .6rem !important;
}
}
/* Dashed border */
hr.dashed {
border: .1rem dashed var(--border);