Add code example and improve design

- Add "See it in action" section with complete code example showing button click loading article
- Include HTML, Python handler, and result sections to demonstrate full workflow
- Change bold text color to brown for better visibility and design consistency
- Invert link underline behavior: underlined by default, removed on hover
This commit is contained in:
2025-12-26 20:00:57 +01:00
parent b8b333c228
commit 40290aa24e
2 changed files with 69 additions and 2 deletions

View File

@@ -45,6 +45,12 @@ i {
font-style: normal;
}
strong,
b {
color: var(--color-brown);
font-weight: bold;
}
/* Components */
.container {
@@ -65,13 +71,13 @@ a,
.link {
display: inline-block;
color: var(--color-brown);
text-decoration: none;
text-decoration: underline;
padding-block: .3rem;
}
a:hover,
.link:hover {
text-decoration: underline;
text-decoration: none;
}
.title {