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

@@ -112,6 +112,16 @@ a.h1 {
a, a:visited {
cursor: cell;
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 {
@@ -544,9 +554,9 @@ img + em {
padding: 0.5rem !important;
}

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

/* INDEX SEARCH */

@@ -557,6 +567,12 @@ img + em {
.w100-s {
width: 100%;
}
/* SEARCH */

#result {
padding-top: 3.5rem;
}

/* RANDOM TITLES */


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

@@ -4,7 +4,7 @@

<div class="row">
<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="mt-2 text-center">{{ num_found }} patents found out of {{ total_number }}</p>
</div>

Loading…
Cancel
Save