diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2014-12-22 20:12:29 +0100 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2014-12-22 20:12:29 +0100 |
commit | 0a976e7257c8f7836bb138bf44c0937d7e5d4996 (patch) | |
tree | 6977eba79f24a8983a782531aace0734abb3d4ec /imdb-lookup | |
parent | 38c9d869f3a781bc8e95e7cef0316d203d7ff5e4 (diff) | |
download | scripts-0a976e7257c8f7836bb138bf44c0937d7e5d4996.tar.gz scripts-0a976e7257c8f7836bb138bf44c0937d7e5d4996.zip |
style
Diffstat (limited to 'imdb-lookup')
-rw-r--r-- | imdb-lookup/css/style.css | 3 | ||||
-rw-r--r-- | imdb-lookup/index.jinja2.html | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/imdb-lookup/css/style.css b/imdb-lookup/css/style.css index 3d4b99b..8c96bbe 100644 --- a/imdb-lookup/css/style.css +++ b/imdb-lookup/css/style.css @@ -72,3 +72,6 @@ font-size:0.7em; padding: 2px; } +label { +font-weight: bold; +} diff --git a/imdb-lookup/index.jinja2.html b/imdb-lookup/index.jinja2.html index d02ccf9..94fb525 100644 --- a/imdb-lookup/index.jinja2.html +++ b/imdb-lookup/index.jinja2.html @@ -15,6 +15,7 @@ <script type="text/x-handlebars" id="index"> <div class="box"> <div class="sort"> + <label>Sort by:</label> <button {{action 'sortBy' 'title'}}>Title</button> <button {{action 'sortBy' 'imdbRating'}}>IMDB Rating</button> <button {{action 'sortBy' 'imdbVotes'}}>IMDB Votes</button> @@ -28,7 +29,7 @@ <div class="box"> <center> {{#each page in pages}} - <strong>{{page.runningLabel}}</strong> + <label>{{page.runningLabel}}</label> <button {{action 'setPage' page.number}}>{{page.number}}</button> {{/each}} </center> |