LoginSignup
1
0

More than 3 years have passed since last update.

簡単カレンダーを少し装飾してみた

Posted at

はじめに

 昨日、導入したsimple_calendarについて、少し装飾を加えたので、紹介します。

簡単カレンダー

表示のされかたを変えたい


<%= month_calendar do |date| %>
  <%= date.strftime("%d") %>
<% end %>

strftim("%d")によって表示を変えることができます。ちなみに、この記述で、日にちだけの表示にできます。

曜日に色をつけたい

calendar.css
.wday-0 {
  color: red;
}
.wday-6 {
  color: blue;
}

変更前

変更後

少しはカレンダーっぽくなったかな…

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0