Remove JS and re-arange files

* Remove Javascript
* Move files about
* Add Makefile
* Add Privacy & ToS
* Add favicon
* Make index.html static
* Add requirements.txt
This commit is contained in:
Juan Canham
2020-04-10 03:24:17 +01:00
parent 845a2b3ec1
commit 556f379c05
34 changed files with 211 additions and 303 deletions

5
css/fontawesome-all.min.css vendored Normal file

File diff suppressed because one or more lines are too long

66
css/main.css Normal file
View File

@ -0,0 +1,66 @@
html, body {
height: 100%;
width: 100%;
margin: 0;
text-rendering: optimizeLegibility;
font-family: sans-serif;
text-align: center;
background-image: url('../background.jpg');
background-repeat: no-repeat;
background-size: cover;
}
body {
background-position: center;
background-attachment: fixed;
}
#wrapper {
height: 92%;
display: grid;
}
#itemlist {
display: inline-grid;
grid-template-columns: repeat(2, 1fr);
margin: auto;
}
@media only screen and (min-width: 600px) {
#itemlist {
grid-template-columns: repeat(3, 1fr);
}
}
@media only screen and (min-width: 800px) {
#itemlist {
grid-template-columns: repeat(4, 1fr);
}
}
#itemlist {
border-radius: 6px;
background-color: rgba(0, 0, 0, .4);
font-size: 4em;
}
#itemlist>* {
padding: 15px;
margin: 0 auto;
}
/* link colors */
#itemlist a {
color: #fff;
}
#itemlist a:hover {
color: #c4c4c4;
}
#footer {
position: absolute;
bottom: 0;
width: 100%;
}
p {color: Cyan;}
a {
color: LightCyan;
}