Application themed as GOLEM website

This commit is contained in:
giomba 2018-12-22 18:38:12 +01:00
parent a68967476d
commit 62c9be6a0d
2 changed files with 22 additions and 5 deletions

View File

@ -8,9 +8,11 @@
</head>
<body>
<div id="tpdfSearchDiv">
<h1>TPDF - Tellico Parser anD Finder</h1>
<header>
TPDF - Tellico Parser anD Finder <small>by <a href="https://golem.linux.it/">GOLEM</a></small>
</header>
<div id="tpdfSearchDiv">
<form id="tpdfForm" action="main.py" method="get">
<label for="title">Title</label>
<input type="text" name="title" />

View File

@ -3,18 +3,33 @@
/******* Main elements *******/
body {
margin: 0 auto;
padding: 0px;
font-family: sans-serif;
color: black;
background-color: white;
background-image: url(frontend/background.png);
}
/******* Search form *******/
#tpdfSearchDiv {
header {
margin: 0 auto;
padding: 10px;
background-color: black;
color: white;
line-height: 1.5em;
height: 21px;
border-bottom: 5px solid green;
font-family: sans-serif;
box-sizing: content-box !important;
}
a, a:visited {
text-decoration: none;
color: green;
}
/******* Search form *******/
#tpdfForm {
padding: 10px;
border-bottom: 4px solid green;
}
/******* Results output table *******/