プロメモグラム

誰が見てもわかるような文章を目指す

Google CalendarのStylishの設定

追記

Googleカレンダーの仕様が変わったため、使用できなくなった……

本文

Googleカレンダーで一番左を月曜日にすると、
休日がまとまって嬉しいんだけど、
普通のカレンダーは一番左が日曜日だから、
曜日と日付の対応を間違える。

そこで、Chrome拡張機能Stylishを使って、
土日の背景色を変えた。

Stylishはスタイルの同期してくれないみたいだから、 メモっておく。とても簡単だけど多少よくなった。

.st-bg-table tbody tr :nth-child(6) {
    background-color : #aaf !important;
}
.st-grid  tbody tr :nth-child(6) {
    background-color : #aaf !important;
}

.st-bg-table tbody tr :nth-child(7) {
    background-color : #faa !important;
}
.st-grid  tbody tr :nth-child(7) {
    background-color : #faa !important;
}

f:id:zia_glass:20170730223722p:plain