diff options
author | Jacob Appelbaum <jacob@appelbaum.net> | 2011-08-23 15:20:12 +0200 |
---|---|---|
committer | Jacob Appelbaum <jacob@appelbaum.net> | 2011-08-23 15:20:12 +0200 |
commit | 5c61f445926f1420f61e509cea51dc7a24e1b0b5 (patch) | |
tree | 9c4d8eed750c673db7cfb5fa697765e6b55d4f67 /packages/torouter-web/src/tui/views | |
parent | 3dd720f3d17b946481ab59ec191bf17cafec50e5 (diff) | |
parent | b54039300353ad6bfb59e6668f03fe9e1745c763 (diff) | |
download | torouter-5c61f445926f1420f61e509cea51dc7a24e1b0b5.tar.gz torouter-5c61f445926f1420f61e509cea51dc7a24e1b0b5.zip |
Merge branch 'master' of ssh://git-rw.torproject.org/torouter
Diffstat (limited to 'packages/torouter-web/src/tui/views')
-rw-r--r-- | packages/torouter-web/src/tui/views/base.html | 55 |
1 files changed, 54 insertions, 1 deletions
diff --git a/packages/torouter-web/src/tui/views/base.html b/packages/torouter-web/src/tui/views/base.html index bce4110..5db0249 100644 --- a/packages/torouter-web/src/tui/views/base.html +++ b/packages/torouter-web/src/tui/views/base.html @@ -5,7 +5,60 @@ $def with (page,submenu=None) <html> <head> <title>TUI - Tor Web User Interface</title> - <link REL="stylesheet" href="/static/main.css" type="text/css"> +<style type="text/css"> +/* Clear all */ +body { margin: 0;border: 0;padding: 0; } + +div.wrapper { + min-height: 300px; + width: 800px; + margin: 0 auto; +} + +div.footer { + text-align: center; + background-color: #333; + color: white; + padding-top: 20px; + padding-bottom: 20px; +} + +div.header { + color: white; +} + +div.header ul { + list-style: none; + height: 20px; +} + +div.header ul li { + font-size: 20px; + float: left; + padding: 5px 10px; +} + +div.header ul#submenu li { + font-size: 15px; +} + +div.header ul#submenu li a.sel { + color: black; + text-decoration: none; +} + +/* More specific stuff */ +#torrc { +list-style: none; +line-height: 2em; +} + +#torrc em { +font-weight: bold; +font-style: normal; +} +</style> +<!-- link REL="stylesheet" href="/static/main.css" type="text/css" --> </head> <body> <div class="header"> |