diff options
Diffstat (limited to 'module/web')
| -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>
  | 
