diff options
-rwxr-xr-x | bin/reproducible_html_packages.py | 4 | ||||
-rw-r--r-- | userContent/static/style.css | 19 |
2 files changed, 18 insertions, 5 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index 3b6142d2..15926649 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -17,7 +17,7 @@ html_package_page = Template((tab*2).join((""" <td> <span style="font-size:1.2em;">$package</span> $version <a href="/index_$status.html" target="_parent" title="$status"> - <img src="/userContent/static/$icon" alt="$status" /> + <img src="/static/$icon" alt="$status" /> </a> <span style="font-size:0.9em;">at $build_time:</span> $links @@ -33,7 +33,7 @@ $links </td> </tr> </table> -<iframe name="main" src="${default_view}" width="100%%" height="98%%" frameborder="0"> +<iframe name="main" src="${default_view}"> <p> Your browser does not support iframes. Use a different one or follow the links above. diff --git a/userContent/static/style.css b/userContent/static/style.css index 891aa131..5c560efc 100644 --- a/userContent/static/style.css +++ b/userContent/static/style.css @@ -6,15 +6,14 @@ html { } body { - width: 99%; border-sizing: border-box; font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; font-size: 14px; line-height: 20px; color: #333333; padding: 0.25em 0.25em 0em 0.25em; - margin: 0.25em 0.25em 0em 0.25em; - height: 100%; + margin: 0; + height: 93%; } pre { @@ -138,6 +137,13 @@ table { table.head { width: 100%; + margin: 0; + position: absolute; + top: 0px; + left: 0px; + border-top: 0; + border-left: 0; + border-right: 0; } table.body { @@ -165,6 +171,13 @@ th { padding: 0.5em; } +iframe#main { + margin: 2em 0 0 0; + width: 100%; + height: 100%; + border: 0; +} + hr { border-top: none; border-bottom: 1px solid #d70a53; |