mozilla-japan / dev.mozilla.jp

dev.mozilla.jp のテーマ
1 stars 1 forks source link

不要なレイヤの削除 #24

Closed ethertank closed 11 years ago

ethertank commented 11 years ago

不要なレイヤを削除。

/* 旧 */
background: #fff;
background: url("images/dino.png") no-repeat right 0,
  #fff;

/* 新 */
background: url("images/dino.png") no-repeat right 0 #fff;

部分的なコード整形も行っています。

tetsuharuohzeki commented 11 years ago

Thank you!