Browse Source

more changes from Joana

main
Simon Bowie 1 year ago
parent
commit
6ab6b4cb51
2 changed files with 20 additions and 4 deletions
  1. +19
    -3
      web/app/static/styles/custom.css
  2. +1
    -1
      web/app/templates/search.html

+ 19
- 3
web/app/static/styles/custom.css View File

a, a:visited { a, a:visited {
cursor: cell; cursor: cell;
color: var(--color-dark) !important; color: var(--color-dark) !important;
overflow-wrap: break-word;
word-wrap: break-word;
-ms-word-break: break-all;
word-break: break-all;
word-break: break-word;
/* adds a hyphen where the word breaks, if supported (No Blink) */
-ms-hyphens: auto;
-moz-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
} }


a:hover { a:hover {
padding: 0.5rem !important; padding: 0.5rem !important;
} }


.h1 {
padding-top: 2rem;
}
.action {
margin: 1.5rem 3rem 1.5rem 4rem;
}


/* INDEX SEARCH */ /* INDEX SEARCH */


.w100-s { .w100-s {
width: 100%; width: 100%;
} }
/* SEARCH */

#result {
padding-top: 3.5rem;
}


/* RANDOM TITLES */ /* RANDOM TITLES */



+ 1
- 1
web/app/templates/search.html View File



<div class="row"> <div class="row">
<div class="col m-5"> <div class="col m-5">
<a href="{{ url_for('main.index') }}" class="h1 text-left"> ⇽ </a>
<a href="{{ url_for('main.index') }}" class="search-back text-left" title="back to search">search</a>
<p class="h1 text-center">a timeline of inventions</p> <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> <p class="mt-2 text-center">{{ num_found }} patents found out of {{ total_number }}</p>
</div> </div>

Loading…
Cancel
Save