Michael Rodin
dda864a92e
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.
18 lines
286 B
CSS
18 lines
286 B
CSS
div.grid-container {
|
|
display: grid;
|
|
grid-template-columns: auto auto auto;
|
|
}
|
|
div.grid-item {
|
|
border: 2px black solid;
|
|
}
|
|
|
|
a.grid-item {
|
|
text-decoration: none;
|
|
display: contents;
|
|
height: 100%;
|
|
color: black;
|
|
}
|
|
|
|
div.clickable:hover {
|
|
background: lightgrey;
|
|
} |