Firefox で Google Notebook を等幅フォントにする

Google Notebook を等幅フォントで使いたいと思って書いてみました。Firefox 1.5 の userContent.css に書き込みます。

/* Google Notebook */
@-moz-document url-prefix(http://www.google.com/notebook/) {
  .NoteContents,
  .editable,
  .NoteCollapsedContents {
    font-family: monospace !important;
    font-size: 12px !important;
    line-height: 18px !important;
  }
}

とりあえず、こんな感じ。

—- 追記 @ 2006/12/21 —-

id とか class 名とか調べるのが面倒くさかったので、下のような CSS コードに書き換えた。

@-moz-document url-prefix(http://www.google.com/notebook/) {
* {
  font-family: monospace !important;
  font-size: 12px !important;
  line-height: 18px !important;
  font-weight: normal !important;
}

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です