diff --git a/static/css/styles.css b/static/css/styles.css index 16146cd..f44c791 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -5,7 +5,7 @@ body { } header { - background-color: #007BFF; + background-color: #008C2F; color: white; padding: 1em 0; text-align: center; @@ -56,4 +56,14 @@ main { .mb-2{ list-style-type: none; -} \ No newline at end of file +} +/* styles.css */ + +#add-rank-btn, #save-btn { + background-color: #7A288A; /* This is a deep purple color */ + border-color: #7A288A; +} + +#add-rank-btn:hover, #save-btn:hover { + background-color: #55107B; /* This is a darker shade of purple for hover effect */ +} diff --git a/templates/about.html b/templates/about.html index 67d20b9..0c5f325 100644 --- a/templates/about.html +++ b/templates/about.html @@ -1,6 +1,18 @@ {% extends "base.html" %} {% block content %}

{{now.strftime("%Y/%m/%d %H:%M:%S")}}

+ +

This page was created with the help of LLMs and the Flask framework. It's a great way to learn about how these technologies work together.

+

Here are some of the key components that were used:

+ +

I hope you found this information helpful! If you have any questions or need further assistance, feel free to reach out.

+

Best of luck with your project!

{% endblock %} \ No newline at end of file