login
Added login functionality. It's a bit clunky, but it deas what it needs to. Testing needed. The header now has a search bar, but the page itself needs to be created.
This commit is contained in:
parent
d4016ce80c
commit
dda864a92e
10 changed files with 153 additions and 29 deletions
|
@ -23,7 +23,6 @@ header > div#container {
|
|||
}
|
||||
|
||||
.big-button {
|
||||
width: 2em;
|
||||
height: 2em;
|
||||
margin: auto 0.1em;
|
||||
border: none;
|
||||
|
|
|
@ -6,6 +6,13 @@ div.grid-item {
|
|||
border: 2px black solid;
|
||||
}
|
||||
|
||||
a.grid-item {
|
||||
text-decoration: none;
|
||||
display: contents;
|
||||
height: 100%;
|
||||
color: black;
|
||||
}
|
||||
|
||||
div.clickable:hover {
|
||||
background: grey;
|
||||
background: lightgrey;
|
||||
}
|
9
flask/static/login.css
Normal file
9
flask/static/login.css
Normal file
|
@ -0,0 +1,9 @@
|
|||
div.grid-container {
|
||||
margin: 2em 0 0 1em;
|
||||
display: inline-grid;
|
||||
grid-template-columns: auto auto;
|
||||
}
|
||||
|
||||
div.grid-container > * {
|
||||
margin: 1em auto;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue