Facebook
From vmcuong, 2 Months ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 157
  1. #left-button{
  2.   float: left;
  3. }
  4. #right-button{
  5.   float:right
  6. }
  7. table, th, td {
  8.   border-collapse: collapse;
  9. }
  10. table {
  11.   border: 1px solid black;
  12. }
  13. td{
  14.   width: calc(300px / 7 - 2px);
  15.   height: calc(300px / 8 - 2px);
  16.   border-radius: 4px;
  17.   text-align: center;
  18.   cursor: pointer;
  19. }
  20. .NotThisMonth{
  21.   color:grey;
  22.   cursor: default;
  23. }
  24. .ThisMonth:hover{
  25.   background-color: gray;
  26.   color:white
  27. }
  28. button{
  29.   width: 24px;
  30.   height: 24px;
  31.   border:none;
  32.   background:none;
  33. }
  34. .chooseDay{
  35.   background:#a0a0ff;
  36.   color:white
  37. }