mixiを2カラム化

mixiのサイトデザインの変更は賛否両論あるみたいですが、
とりあえずxhtmlになってたのでコレ幸いとユーザーCSS書いてみた。(for Firefox)

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("mixi.jp") {
  body{background-color:#eee !important;}
  .homeSearchBox{display: none !important;}
  .contentsNavigation .news,.mikly{display: none !important;}
  .utilityNavigation .logout{display: none !important;}
  .localNaviHome .review,.video,
    #photoPullDownButton{display: none !important;}
  .footerNavigation01,.footerNavigation02{display: none !important;}
  p.adBanner{display: none !important;}
  #headerArea, #bodyArea, #footerArea, #bodyMainArea{
    width:760px !important; background-color:#fff !important;
  }
  #bodySub{display: none !important;}
  #newAlbum{display: none !important;}
  #newVideo{display: none !important;}
  #newPlaylist{display: none !important;}
}

読みにくいとは思いますが、これで2カラムに戻ります。
ついでに、アルバム、ビデオ、プレイリストも非表示にしてます。(サムネイル表示がウザいので)


作業時間はFirebug & stylish使用で30分くらい。