diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..eba74f4 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +venv/ \ No newline at end of file diff --git a/website/__pycache__/__init__.cpython-311.pyc b/website/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000..5599105 Binary files /dev/null and b/website/__pycache__/__init__.cpython-311.pyc differ diff --git a/website/__pycache__/auth.cpython-311.pyc b/website/__pycache__/auth.cpython-311.pyc new file mode 100644 index 0000000..078c0ef Binary files /dev/null and b/website/__pycache__/auth.cpython-311.pyc differ diff --git a/website/__pycache__/models.cpython-311.pyc b/website/__pycache__/models.cpython-311.pyc new file mode 100644 index 0000000..c615326 Binary files /dev/null and b/website/__pycache__/models.cpython-311.pyc differ diff --git a/website/__pycache__/views.cpython-311.pyc b/website/__pycache__/views.cpython-311.pyc new file mode 100644 index 0000000..8df893d Binary files /dev/null and b/website/__pycache__/views.cpython-311.pyc differ diff --git a/website/static/css/main.css b/website/static/css/main.css index 6942158..e8c2573 100644 --- a/website/static/css/main.css +++ b/website/static/css/main.css @@ -1,14 +1,16 @@ body { margin: 0; font-family: monospace; -} - -.topnav { + } + @keyframes lol { + from {background-color: #333;} + to {background-color: #ddd;} + } + .topnav { overflow: hidden; background-color: #333; -} - -.topnav a { + } + .topnav a { float: left; color: #858585; text-align: center; @@ -16,18 +18,15 @@ body { text-decoration: none; font-size: 18px; font-weight: bold; -} - -.topnav a:hover { + } + .topnav a:hover { background-color: #ddd; color: black; -} - -.topnav a.active { + } + .topnav a.active { background-color: #333333; color: #04AA6D; -} - + } .topnav a.twitch { background-color: #333333; color: #6441a5; @@ -40,7 +39,9 @@ body { background-color: #333333; color: #7289da; } - h1 {text-align: center;} + .topnav a.game { + float: right; + } p {text-align: center; font-size:16px; line-height: 160%; diff --git a/website/templates/base.html b/website/templates/base.html index fd2bb76..ea59177 100644 --- a/website/templates/base.html +++ b/website/templates/base.html @@ -3,29 +3,19 @@ - - - {% block title %}Home{% endblock %} + Anorak_1: {% block title %}Home{% endblock %}
Home Discord Twitch - YouTube + YouTube Sites About + 1st Game
{% with messages = get_flashed_messages(with_categories=true) %} {% if @@ -46,7 +36,8 @@ {% endif %} {% endfor %} {% endif %} {% endwith %} -
{% block content %} {% endblock %}
+ + {% block content %} {% endblock %}