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> </head>
<body> <body>
<div id="tpdfSearchDiv"> <header>
<h1>TPDF - Tellico Parser anD Finder</h1> 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"> <form id="tpdfForm" action="main.py" method="get">
<label for="title">Title</label> <label for="title">Title</label>
<input type="text" name="title" /> <input type="text" name="title" />

View File

@ -3,18 +3,33 @@
/******* Main elements *******/ /******* Main elements *******/
body { body {
margin: 0 auto; margin: 0 auto;
padding: 0px;
font-family: sans-serif; font-family: sans-serif;
color: black; color: black;
background-color: white; background-color: white;
background-image: url(frontend/background.png); background-image: url(frontend/background.png);
} }
/******* Search form *******/ header {
#tpdfSearchDiv { margin: 0 auto;
padding: 10px;
background-color: black; background-color: black;
color: white; 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; padding: 10px;
border-bottom: 4px solid green;
} }
/******* Results output table *******/ /******* Results output table *******/