diff options
Diffstat (limited to 'embed.cgi')
-rwxr-xr-x | embed.cgi | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -12,7 +12,9 @@ if __name__ == "__main__": "bg": 'white', "fg": 'black', "george": '#3d3db8', - "links": 'blue' + "links": 'blue', + "underline": "blue", + } print("Content-Type: text/html") @@ -77,6 +79,7 @@ f"""<!DOCTYPE html> box-shadow: 5px 5px black; background-color: {colors["bg"]}; color: {colors["fg"]}; + display: flex; flex-wrap: nowrap; justify-content: space-between; @@ -84,7 +87,7 @@ f"""<!DOCTYPE html> #george {{ color: {colors["george"]}; text-decoration: underline; - text-decoration-color: blue; + text-decoration-color: {colors["underline"]}; text-decoration-thickness: 2px; font-style: oblique; animation: 2s infinite alternate george; |