main.css 517 B

1234567891011121314151617181920212223242526272829303132
  1. #calendar {
  2. max-width: 900px;
  3. margin: 0 auto;
  4. }
  5. .fc-event{
  6. border-radius:0;
  7. }
  8. .fc-event[data-selected]{
  9. background-color:#FFA500!important;
  10. border-color:#CC880B!important;
  11. }
  12. .fc-day.fc-sun{ background-color:#f3f3f3; }
  13. .fc-day.fc-sat { background-color:#f3f3f3; }
  14. .fc-day-top a{
  15. color: #9e9d9d;
  16. text-decoration: none;
  17. display: inline-block;
  18. background: #EAEAEA;
  19. width: 20px;
  20. text-align: center;
  21. }
  22. .fc-event{
  23. border-radius:2px!important;
  24. padding:3px!important;
  25. transition:background 0.2s linear;
  26. }