PlanDate.scss 561 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .calendar {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. width: 100%;
  6. }
  7. .row {
  8. width: 100%;
  9. display: flex;
  10. flex-wrap: wrap;
  11. margin-left: 15px;
  12. }
  13. .item {
  14. margin: 5px 7px;
  15. height: 20px;
  16. width: 10%;
  17. border-radius: 5px;
  18. }
  19. .text {
  20. font-size: 12px;
  21. font-weight: bold;
  22. }
  23. .active{
  24. color:#FFf;
  25. width:28px;
  26. height:28px;
  27. line-height: 28px;
  28. text-align: center;
  29. margin-left: -5px;
  30. margin-top: -5px;
  31. background:#b21c1c;
  32. border-radius: 50%;
  33. }