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 flask import Flask, render_template, request, jsonify
|
||||||
from services import Services
|
from services import Services
|
||||||
app = Flask("Project Candle")
|
app = Flask("Project Fish")
|
||||||
services = Services()
|
services = Services()
|
||||||
|
|
||||||
@app.route('/')
|
@app.route('/')
|
||||||
|
@ -39,8 +39,8 @@
|
|||||||
.requestblock{
|
.requestblock{
|
||||||
position: relative;
|
position: relative;
|
||||||
/* border: 1px solid black; */
|
/* border: 1px solid black; */
|
||||||
left: 25%;
|
left: 30%;
|
||||||
padding: 5%;
|
margin-bottom: 2.5%;
|
||||||
width: 40%;
|
width: 40%;
|
||||||
font-family: "Verdana";
|
font-family: "Verdana";
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
@ -50,11 +50,12 @@
|
|||||||
position: relative;
|
position: relative;
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
/* border: 1px solid black; */
|
/* border: 1px solid black; */
|
||||||
left:25%;
|
left: 30%;
|
||||||
top: 50%;
|
top: 10%;
|
||||||
width: 40%;
|
width: 40%;
|
||||||
padding: 5%;
|
font-size: 24px;
|
||||||
font-family: "Verdana";
|
font-family: "Verdana";
|
||||||
|
margin-top: 0%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.resultitem{
|
.resultitem{
|
||||||
@ -62,9 +63,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.klanten_logo:active{
|
.klanten_logo:active{
|
||||||
-webkit-animation:spin 4s linear infinite;
|
/* -webkit-animation:spin 4s linear infinite;
|
||||||
-moz-animation:spin 4s linear infinite;
|
-moz-animation:spin 4s linear infinite;
|
||||||
animation:spin 4s linear infinite;
|
animation:spin 4s linear infinite; */
|
||||||
}
|
}
|
||||||
|
|
||||||
@-moz-keyframes spin {
|
@-moz-keyframes spin {
|
||||||
@ -101,20 +102,18 @@
|
|||||||
|
|
||||||
.nummer_button{
|
.nummer_button{
|
||||||
position: relative;
|
position: relative;
|
||||||
background-color: green;
|
background-color: rgb(35, 34, 126);
|
||||||
padding: 2%;
|
padding: 2%;
|
||||||
margin: 1%;
|
margin: 1%;
|
||||||
width: 40%;
|
width: 40%;
|
||||||
left: 30%;
|
left: 30%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 26px;
|
font-size: 26px;
|
||||||
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.nummer_button:hover{
|
.nummer_button:hover{
|
||||||
background-color: lightgreen;
|
background-color: rgb(95, 132, 151);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,7 +8,9 @@
|
|||||||
|
|
||||||
<body class="bodyclass">
|
<body class="bodyclass">
|
||||||
<header class="headerblock">
|
<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">
|
<img class="klanten_logo" src="//image.protestantsekerk.net/uploads/klant484/logo.png" title="Rondzes" alt="logo">
|
||||||
|
</a>
|
||||||
<div class="navbarbtn">
|
<div class="navbarbtn">
|
||||||
<tr>
|
<tr>
|
||||||
Contact
|
Contact
|
||||||
|
Loading…
Reference in New Issue
Block a user