You are here

availability_calendars.css in Availability Calendars 5

Same filename and directory in other branches
  1. 6 availability_calendars.css
table.cal {
  width: 200px;
  display: inline;
  display: inline-table; /* for Safari */
  float: left;
  font-size: 80%;
  margin: 6px;
}

.calmonth {
  text-align: center;
}

tr.caldays {
  color: #ccc;
}

td.calnote {
  color: #000;
}

td.calother {
  background: #fff; 
}

td.calavailable {
  color: #000;
  background: lightgreen;
  text-align: center;
}

td.calnotavailable {
  color: #fff;
  text-align: center;
  background: lightpink;
}

td.calnotavailableprov {
  color: #ccc;
  text-align: center;
  background: lightyellow;
}

File

availability_calendars.css
View source
  1. table.cal {
  2. width: 200px;
  3. display: inline;
  4. display: inline-table; /* for Safari */
  5. float: left;
  6. font-size: 80%;
  7. margin: 6px;
  8. }
  9. .calmonth {
  10. text-align: center;
  11. }
  12. tr.caldays {
  13. color: #ccc;
  14. }
  15. td.calnote {
  16. color: #000;
  17. }
  18. td.calother {
  19. background: #fff;
  20. }
  21. td.calavailable {
  22. color: #000;
  23. background: lightgreen;
  24. text-align: center;
  25. }
  26. td.calnotavailable {
  27. color: #fff;
  28. text-align: center;
  29. background: lightpink;
  30. }
  31. td.calnotavailableprov {
  32. color: #ccc;
  33. text-align: center;
  34. background: lightyellow;
  35. }