diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..66754d0 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,23 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python: Flask", + "type": "python", + "request": "launch", + "module": "flask", + "env": { + "FLASK_APP": "app.py", + "FLASK_ENV": "development" + }, + "args": [ + "run", + "--no-debugger" + ], + "jinja": true + } + ] +} \ No newline at end of file diff --git a/__pycache__/app.cpython-39.pyc b/__pycache__/app.cpython-39.pyc new file mode 100644 index 0000000..8b1f862 Binary files /dev/null and b/__pycache__/app.cpython-39.pyc differ diff --git a/__pycache__/services.cpython-39.pyc b/__pycache__/services.cpython-39.pyc new file mode 100644 index 0000000..be14a7b Binary files /dev/null and b/__pycache__/services.cpython-39.pyc differ diff --git a/app.py b/app.py index 0eefa08..649e778 100644 --- a/app.py +++ b/app.py @@ -1,6 +1,6 @@ from flask import Flask, render_template, request, jsonify from services import Services -app = Flask("Project Candle") +app = Flask("Project Fish") services = Services() @app.route('/') diff --git a/static/style.css b/static/style.css index 5b98c8a..cfb3ea9 100644 --- a/static/style.css +++ b/static/style.css @@ -39,8 +39,8 @@ .requestblock{ position: relative; /* border: 1px solid black; */ - left: 25%; - padding: 5%; + left: 30%; + margin-bottom: 2.5%; width: 40%; font-family: "Verdana"; background-color: #ffffff; @@ -50,11 +50,12 @@ position: relative; background-color: #ffffff; /* border: 1px solid black; */ - left:25%; - top: 50%; + left: 30%; + top: 10%; width: 40%; - padding: 5%; + font-size: 24px; font-family: "Verdana"; + margin-top: 0%; } .resultitem{ @@ -62,9 +63,9 @@ } .klanten_logo:active{ - -webkit-animation:spin 4s linear infinite; + /* -webkit-animation:spin 4s linear infinite; -moz-animation:spin 4s linear infinite; - animation:spin 4s linear infinite; + animation:spin 4s linear infinite; */ } @-moz-keyframes spin { @@ -101,20 +102,18 @@ .nummer_button{ position: relative; - background-color: green; + background-color: rgb(35, 34, 126); padding: 2%; margin: 1%; width: 40%; left: 30%; text-align: center; font-size: 26px; + color: white; } - - - .nummer_button:hover{ - background-color: lightgreen; + background-color: rgb(95, 132, 151); cursor: pointer; } diff --git a/templates/base.html b/templates/base.html index ad5a520..dc06b04 100644 --- a/templates/base.html +++ b/templates/base.html @@ -8,7 +8,9 @@
- + + +