Changeset 32773

Show
Ignore:
Timestamp:
04/24/09 13:06:29 (4 years ago)
Author:
arccosine
Message:

Fix CSS and more

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • websites/modoki/index.html

    r32754 r32773  
    2424      #main_content{ 
    2525        padding-top: 25px; 
    26         padding-bottom: 100px; 
     26        padding-bottom: 120px; 
    2727      } 
    2828      #header{ 
     
    5151        background: #f6f6f6; 
    5252        border: 1px solid #aaa; 
     53        font-size: 14px; 
    5354      } 
    5455      #userInput{ 
     
    6162        background: #ffffff; 
    6263      } 
    63       #user_icon{ 
     64      #user_icon img{ 
    6465        width: 16px; 
    6566        height: 16px; 
     67      } 
     68      #out img{ 
     69        width: 32px; 
     70        height: 32px; 
    6671      } 
    6772      .blocked{ 
     
    120125        this._altanative = (new Date).getTime(); 
    121126        this._crosspost = 0; 
     127        this._version = "0.21"; 
    122128      }; 
    123129      Modoki.prototype.loadKeyBind = function(){ 
     
    144150        var _header_content = d.createElement("div"); 
    145151        _header_content.id = "header_content"; 
    146         _header_content.appendChild(d.createTextNode("Tween Modoki")); 
     152        _header_content.appendChild(d.createTextNode("Tween Modoki"+" version "+this._version)); 
    147153        document.getElementById("header").appendChild(_header_content); 
    148154 
     
    275281      }; 
    276282      var cb = function(data){ 
    277         for( var i=data.length; i-->0; createLiTag(data[i]) ); 
     283        for( var i=data.length; i-- > 0; createLiTag(data[i]) ); 
    278284        var _script = d.getElementsByTagName("script"); 
    279285        _script[_script.length-1].parentNode.removeChild(_script[_script.length-1]); 
     
    297303        var imgTag = imgDiv.appendChild(d.createElement("img")); 
    298304        imgTag.src = obj["user"]["profile_image_url"]; 
    299         imgTag.style.height = "16px"; 
    300         imgTag.style.width = "16px"; 
    301305 
    302306        var nameDiv = liTag.appendChild(d.createElement("div")); 
     
    306310        var textDiv = liTag.appendChild(d.createElement("div")); 
    307311        textDiv.appendChild(d.createTextNode(obj.text)); 
    308         textDiv.className = "sub text"; 
     312        textDiv.className = "sub"; 
    309313      }; 
    310314    </script>