Improve webserver page

This commit is contained in:
2021-01-30 10:07:17 +00:00
parent b732ade9e1
commit 8f9133bcc2
4 changed files with 203 additions and 18 deletions

46
data/index.html Normal file
View File

@@ -0,0 +1,46 @@
<html>
<head>
<style>
body {
background-color: black;
}
a {
display: inline-block;
padding: 0.35em 1.2em;
border: 0.1em solid #FFFFFF;
margin: 0 0.3em 0.3em 0;
border-radius: 0.12em;
box-sizing: border-box;
text-decoration: none;
font-family: 'Roboto', sans-serif;
font-weight: 300;
color: #FFFFFF;
text-align: center;
transition: all 0.2s;
width: 100%;
}
a.active {
background-color: grey;
color: black;
}
a:hover {
color: #000000;
background-color: #FFFFFF;
}
@media all and (max-width:30em) {
a {
display: block;
margin: 0.4em auto;
}
}
</style>
</head>
<body>
~LIST~
</body>
</html>