Changed homescreen layout
This commit is contained in:
parent
2186c273dd
commit
6f6f1ea18a
23
.vscode/launch.json
vendored
Normal file
23
.vscode/launch.json
vendored
Normal file
@ -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
|
||||
}
|
||||
]
|
||||
}
|
BIN
__pycache__/app.cpython-39.pyc
Normal file
BIN
__pycache__/app.cpython-39.pyc
Normal file
Binary file not shown.
BIN
__pycache__/services.cpython-39.pyc
Normal file
BIN
__pycache__/services.cpython-39.pyc
Normal file
Binary file not shown.
2
app.py
2
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('/')
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -8,7 +8,9 @@
|
||||
|
||||
<body class="bodyclass">
|
||||
<header class="headerblock">
|
||||
<a href="https://www.rondzes.nl/">
|
||||
<img class="klanten_logo" src="//image.protestantsekerk.net/uploads/klant484/logo.png" title="Rondzes" alt="logo">
|
||||
</a>
|
||||
<div class="navbarbtn">
|
||||
<tr>
|
||||
Contact
|
||||
|
Loading…
Reference in New Issue
Block a user