33 lines
407 B
HTML
33 lines
407 B
HTML
<style>
|
|
body {
|
|
background-color:black;
|
|
color:white
|
|
}
|
|
|
|
a {
|
|
color:#DC143C
|
|
}
|
|
|
|
.header {
|
|
padding: 60px;
|
|
text-align: center;
|
|
font-size: 30px;
|
|
}
|
|
|
|
.para {
|
|
text-align: center;
|
|
font-size:15
|
|
}
|
|
|
|
input[type=text] {
|
|
border: 2px solid black;
|
|
border-radius: 4px;
|
|
}
|
|
</style>
|
|
<div class=header>{{ TITLE }}</div>
|
|
<div class=para>
|
|
{% for res in results %}
|
|
<p>{{ res }}</p>
|
|
{% endfor %}
|
|
</div>
|