2022-03-12 12:46:31 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<div style="display:none">
|
|
|
|
{% block title %}YellWOWPages - Yellwow{% endblock %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="main">
|
2022-03-12 20:06:22 +00:00
|
|
|
{% include 'includes/search.html' %}
|
2022-03-12 12:46:31 +00:00
|
|
|
|
2022-03-12 20:06:22 +00:00
|
|
|
{% include 'includes/user_results.html' %}
|
2022-03-12 12:46:31 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
#main {
|
|
|
|
width: 100%;
|
|
|
|
height: 80vh;
|
|
|
|
display: grid;
|
|
|
|
place-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
|
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#addresses {
|
|
|
|
width: 100%;
|
|
|
|
height: 54vh;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#addresses::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-03-12 20:06:22 +00:00
|
|
|
|
2022-03-12 12:46:31 +00:00
|
|
|
@media (max-width: 800px) {
|
|
|
|
kbd {
|
|
|
|
width: 100vw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
{% endblock %}
|