diff options
author | cedricbonhomme <devnull@localhost> | 2012-10-12 08:00:39 +0200 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2012-10-12 08:00:39 +0200 |
commit | 1439d67d0d082f20181b423d7950d415e886b388 (patch) | |
tree | 5f883f03e43ec92d5061e39b7a9194a70714b279 | |
parent | HTML5 doctype. You have now to be logged to acces to your pyAggr3g470r instan... (diff) | |
download | newspipe-1439d67d0d082f20181b423d7950d415e886b388.tar.gz newspipe-1439d67d0d082f20181b423d7950d415e886b388.tar.bz2 newspipe-1439d67d0d082f20181b423d7950d415e886b388.zip |
Added log.css
-rwxr-xr-x | source/auth.py | 2 | ||||
-rw-r--r-- | source/css/log.css | 73 |
2 files changed, 74 insertions, 1 deletions
diff --git a/source/auth.py b/source/auth.py index 52ceede6..255cf6a6 100755 --- a/source/auth.py +++ b/source/auth.py @@ -149,7 +149,7 @@ class AuthController(object): msg = "" return """<!DOCTYPE html>\n<html> <head> - <link rel="stylesheet" type="text/css" href="/css/style.css" /> + <link rel="stylesheet" type="text/css" href="/css/log.css" /> </head> <body> <img src="/img/tuxrss.png" alt="pyAggr3g470r" /> diff --git a/source/css/log.css b/source/css/log.css new file mode 100644 index 00000000..71a61f8e --- /dev/null +++ b/source/css/log.css @@ -0,0 +1,73 @@ +body { + font:normal medium 'Gill Sans','Gill Sans MT',Verdana,sans-serif; + margin:1.75em auto; + width:40.8em; + line-height:1.75; +} + +a:link { + color:#1c73b7; + text-decoration:none; + outline:0; +} + +a:visited { + color:#1c73b7; + text-decoration:none; + outline:0; +} + +a:active { + color:#1c73b7; + text-decoration:none; + outline:0; +} + +h1 { + font-size:x-large; + color:#0c85e5; +} + +h2 { + font-size:medium; +} + +h3 { + font-size:small; +} + +hr { + border-style:dotted; + height:1px; + border-width: 1px 0 0 0; + margin:1.45em 0 1.4em; + padding:0; +} + +.right blockquote { + float: right; + position: relative; + clear: both; + padding-top: 1em; + padding-bottom: 0em; + margin-bottom: 0em; + font-style: italic; + width: 100%; + margin-right: 0em; +} + +blockquote.right { + width: 50%; + margin-left: 50%; + margin-right: 0em; +} + +#footer { + clear:both; + text-align:center; + font-size:small +} + +img { + border:0; +} |