ADD: richtext system

Added richtext system for better card content.
This commit is contained in:
webfussel 2025-02-21 14:18:42 +01:00
parent 5fa3ba397b
commit a325d52052
2 changed files with 165 additions and 24 deletions

View file

@ -96,6 +96,14 @@ a {
color: var(--color-white);
}
a.text {
color: var(--color-orange);
&:hover {
color: var(--color-orange-light);
}
}
.nowrap {
white-space: nowrap;
}
@ -107,16 +115,8 @@ a.mail {
color: var(--color-orange);
font-weight: bold;
& img {
filter: invert(50%) sepia(84%) saturate(868%) hue-rotate(1deg) brightness(103%) contrast(100%);
}
&:hover {
color: var(--color-orange-light);
& img {
filter: invert(72%) sepia(59%) saturate(390%) hue-rotate(343deg) brightness(102%) contrast(103%);
}
}
}
@ -164,6 +164,10 @@ span.chip {
min-height: 100vh;
}
.bold {
font-weight: bold;
}
.margin-top {
margin-top: 3rem;
}