Advertisement
poshtarboba

Untitled

Aug 12th, 2020
2,333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #jquery_calendar {
  2.     position: absolute;
  3.     padding: 4px 8px;
  4.     background: #fff;
  5.     border: 1px solid silver;
  6.     box-shadow: 0 5px 10px #0008;
  7. }
  8. #jquery_calendar .calendar-controls {
  9.     display: flex;
  10. }
  11. #jquery_calendar .calendar-controls span {
  12.     padding: 0 4px;
  13.     cursor: pointer;
  14. }
  15. #jquery_calendar .calendar-controls span:hover {
  16.     color: red;
  17. }
  18. #jquery_calendar .calendar-controls strong {
  19.     text-align: center;
  20.     width: 100%;
  21. }
  22. #jquery_calendar table {
  23.     border: none;
  24. }
  25. #jquery_calendar th,
  26. #jquery_calendar td {
  27.     padding: 4px;
  28.     text-align: center;
  29.     border: 1px solid transparent;
  30. }
  31. #jquery_calendar td {
  32.     cursor: pointer;
  33. }
  34. #jquery_calendar td:hover {
  35.     background: #e2e2e2;
  36. }
  37. #jquery_calendar .prev-month,
  38. #jquery_calendar .next-month {
  39.     opacity: 0.4;
  40. }
  41. #jquery_calendar .weekend {
  42.     color: red;
  43. }
  44. #jquery_calendar .today {
  45.     font-weight: bold;
  46.     border: 1px solid #ccc;
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement