| @@ -410,6 +410,14 @@ canvas > * { | |||
| border-bottom: 0.20rem var(--color-lightyellow) solid; | |||
| } | |||
| #time { | |||
| margin-top: 2.5rem; | |||
| } | |||
| #geo { | |||
| margin-top: 2.5rem; | |||
| } | |||
| /* THEMES */ | |||
| .themes { | |||
| @@ -536,8 +544,8 @@ img + em { | |||
| padding: 0.5rem !important; | |||
| } | |||
| .search-back { | |||
| margin: -1rem 0.5rem; | |||
| .h1 { | |||
| padding-top: 2rem; | |||
| } | |||
| /* INDEX SEARCH */ | |||
| @@ -546,6 +554,10 @@ img + em { | |||
| width: 250px; | |||
| } | |||
| .w100-s { | |||
| width: 100%; | |||
| } | |||
| /* RANDOM TITLES */ | |||
| .action button { | |||
| @@ -569,6 +581,13 @@ img + em { | |||
| flex: auto !important; | |||
| } | |||
| /* TEXT PAGES LIKE ARCHIVAL CONVERSATIONS AND MAKING OF */ | |||
| .text { | |||
| margin: 0% 10%; | |||
| } | |||
| } | |||
| @media screen and (min-width:0px) and (max-width: 414px) { | |||
| @@ -4,7 +4,7 @@ | |||
| <div class="row"> | |||
| <div class="col m-5"> | |||
| <a href="{{ url_for('main.index') }}" class="search-back text-left" title="back to search">search</a> | |||
| <a href="{{ url_for('main.index') }}" class="h1 text-left"> ⇽ </a> | |||
| <p class="h1 text-center">a timeline of inventions</p> | |||
| <p class="mt-2 text-center">{{ num_found }} patents found out of {{ total_number }}</p> | |||
| </div> | |||
| @@ -42,7 +42,7 @@ | |||
| <input type="hidden" name="sort" value="{{ sort }}"> | |||
| <input type="hidden" name="year" value="{{ year }}"> | |||
| filter by country: | |||
| <select name="country" id="sort" onchange="this.form.submit()"> | |||
| <select name="country" id="sort" class="w100-s" onchange="this.form.submit()"> | |||
| {% if country is defined %} | |||
| <option value="None" selected>none</option> | |||
| {% else %} | |||
| @@ -1,5 +1,4 @@ | |||
| <div class="text"> | |||
| <button id="notes-operations" onclick="hideShowInfo()">?</button> | |||
| <a href="{{ url_for('main.index') }}" class="search-back text-left" title="back to search">search</a> | |||
| {% extends "base.html" %} | |||