diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-08-12 19:33:18 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-08-12 19:33:18 +0200 |
commit | ccc986fd3e03f59b72649327a2d5a2724d567250 (patch) | |
tree | 60b34e31b6f42ce5ceb183d74415bd4017c606e1 | |
parent | removed icons (diff) | |
parent | added login (diff) | |
download | pyload-ccc986fd3e03f59b72649327a2d5a2724d567250.tar.xz |
converted bottom logo to div
-rw-r--r-- | module/web/static/css/default/style.css | 17 | ||||
-rw-r--r-- | module/web/templates/default/base.html | 4 |
2 files changed, 13 insertions, 8 deletions
diff --git a/module/web/static/css/default/style.css b/module/web/static/css/default/style.css index 26da48221..c4d7dc44e 100644 --- a/module/web/static/css/default/style.css +++ b/module/web/static/css/default/style.css @@ -110,11 +110,13 @@ header div.center span.title { cursor: default;
margin-top: 12px;
}
-header img.logo {
+header .logo {
float: left;
- padding-right: 10px;
- padding-top: 7px;
+ margin-right: 10px;
+ margin-top: 7px;
width: 120px;
+ height: 120px;
+ background: url("../../img/default/logo.png")no-repeat;
}
.header_block {
@@ -162,10 +164,13 @@ footer { z-index: 10;
}
-footer img.logo {
+footer .logo {
+ background: url(../../img/default/logo_grey.png) no-repeat;
float: left;
- padding-top: 12px;
- padding-right: 12px;
+ width: 60px;
+ height: 60px;
+ margin-top: 12px;
+ margin-right: 12px;
}
footer div.center {
diff --git a/module/web/templates/default/base.html b/module/web/templates/default/base.html index ae3fa8d8c..bbbefb4b6 100644 --- a/module/web/templates/default/base.html +++ b/module/web/templates/default/base.html @@ -24,7 +24,7 @@ <div id="wrap">
<header>
<div class="center">
- <img class="logo" alt="" src="static/img/default/logo.png" width="120px" height="120px">
+ <div class="logo"></div>
<span class="title">pyLoad</span>
<div id="notification_div">
@@ -64,7 +64,7 @@ </div>
<footer>
<div class="center">
- <img class="logo" src="static/img/default/logo_grey.png" width="60px" height="60px"/>
+ <div class="logo" src="static/img/default/logo_grey.png"></div>
<div class="block copyright">
© 2008-2012<br>
|