xkcd-retriever/server-implementation/templates/results.html
2024-12-07 13:25:38 +01:00

151 lines
3.3 KiB
HTML

<!doctype html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>xkcd-finder - results for {{ topic }}</title>
</head>
<body>
<section>
<h1 class="head">Results</h1>
<span class="sub">These are the top 5 results for the topic "{{ topic }}"</span>
<ul>
<li>
<span class="title">{{ results[0]["title"] }}</span>
<span class="id">xkdc {{ results[0]["id"] }}</span>
<a target="_blank" rel="noopener noreferrer" class="xkcdlink" href={{ results[0]["url"] }}>Link &gt;&gt;</a>
</li>
<li>
<span class="title">{{ results[1]["title"] }}</span>
<span class="id">xkdc {{ results[1]["id"] }}</span>
<a target="_blank" rel="noopener noreferrer" class="xkcdlink" href={{ results[1]["url"] }}>Link &gt;&gt;</a>
</li>
<li>
<span class="title">{{ results[2]["title"] }}</span>
<span class="id">xkdc {{ results[2]["id"] }}</span>
<a target="_blank" rel="noopener noreferrer" class="xkcdlink" href={{ results[2]["url"] }}>Link &gt;&gt;</a>
</li>
<li>
<span class="title">{{ results[3]["title"] }}</span>
<span class="id">xkdc {{ results[3]["id"] }}</span>
<a target="_blank" rel="noopener noreferrer" class="xkcdlink" href={{ results[3]["url"] }}>Link &gt;&gt;</a>
</li>
<li>
<span class="title">{{ results[4]["title"] }}</span>
<span class="id">xkdc {{ results[4]["id"] }}</span>
<a target="_blank" rel="noopener noreferrer" class="xkcdlink" href={{ results[4]["url"] }}>Link &gt;&gt;</a>
</li>
</ul>
<a href="/" class="backbutton">&lt;&lt; Back to Home</a>
</section>
</body>
<style>
* {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background: #1b1b1b;
margin: 0px;
width: auto;
}
section {
display: flex;
flex-direction: column;
align-items: center;
}
ul {
display: flex;
flex-direction: row;
width: 100%;
height: auto;
align-items: center;
justify-content: center;
text-decoration: none;
list-style: none;
padding: 0;
}
li {
display: flex;
flex-direction: column;
position: relative;
width: 220px;
height: 275px;
border: 2px solid #b86cff;
margin: 1rem;
justify-items: flex-start;
align-items: center;
border-radius: 10px;
}
span {
text-wrap: wrap;
}
.title {
padding-top: 10px;
padding-left: 5px;
padding-right: 5px;
color: #eee;
font-size: 2.1rem;
font-weight: 600;
text-align: center;
}
.id {
position: absolute;
bottom: 56px;
width: 70%;
margin-left: auto;
margin-right: auto;
text-align: center;
font-size: 1.2rem;
color: #eee;
}
.xkcdlink {
position: absolute;
bottom: 10px;
width: 70%;
}
a {
font-weight: 500;
color: #eee;
padding: 0.5rem 0.75rem;
text-decoration: none;
background-color: #333;
border-radius: 10px;
border-style: solid;
border-width: 2px;
border-color: #333;
text-transform: capitalize;
text-align: center;
}
a:hover {
border-color: #b86cff;
}
.head {
margin: 0 .5rem;
hyphens: auto;
padding-top: 5rem;
font-size: 3.25rem;
font-weight: 700;
}
.sub {
margin: 0 .5rem;
font-size: 1.2rem;
font-weight: 500;
color: #eee;
}
.head {
color: #b86cff;
}
</style>