calendar.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. .calendar_main{
  2. width: 750px;
  3. }
  4. .calendar_header{
  5. width: 750px;
  6. height: 56px;
  7. display: flex;
  8. align-items: center;
  9. justify-content: center;
  10. color: #808080;
  11. font-size: 34px;
  12. }
  13. .calendar_body{
  14. margin-top: 38px;
  15. display: flex;
  16. flex-direction: column;
  17. }
  18. .calendar_weekly{
  19. display: flex;
  20. flex-direction: row;
  21. align-items: center;
  22. }
  23. .week_item{
  24. flex:1;
  25. display: flex;
  26. align-items: center;
  27. justify-content: center;
  28. font-size: 26px;
  29. color:#B2B2B2;
  30. }
  31. .calendar_main{
  32. display: flex;
  33. flex-direction: row;
  34. align-items: center;
  35. flex-wrap: wrap;
  36. width: 750px;
  37. }
  38. .left_calendar_item{
  39. height: 74px;
  40. margin-bottom: 16px;
  41. display: flex;
  42. align-items: center;
  43. justify-content: center;
  44. flex-shrink: 0;
  45. background-color: #26B7FF1A;
  46. border-top-left-radius: 37px;
  47. border-bottom-left-radius: 37px;
  48. }
  49. .right_calendar_item{
  50. height: 74px;
  51. margin-bottom: 16px;
  52. display: flex;
  53. align-items: center;
  54. justify-content: center;
  55. flex-shrink: 0;
  56. background-color: #26B7FF1A;
  57. border-top-right-radius: 37px;
  58. border-bottom-right-radius: 37px;
  59. }
  60. .full_calendar_item{
  61. height: 74px;
  62. margin-bottom: 16px;
  63. display: flex;
  64. align-items: center;
  65. justify-content: center;
  66. flex-shrink: 0;
  67. background-color: #26B7FF1A;
  68. border-radius: 37px;
  69. }
  70. .center_calendar_item{
  71. height: 74px;
  72. margin-bottom: 16px;
  73. display: flex;
  74. align-items: center;
  75. justify-content: center;
  76. flex-shrink: 0;
  77. background-color: #26B7FF1A;
  78. }
  79. .calendar_item{
  80. height: 74px;
  81. margin-bottom: 16px;
  82. display: flex;
  83. align-items: center;
  84. justify-content: center;
  85. flex-shrink: 0;
  86. }
  87. .left_day{
  88. color:#26B7FF;
  89. font-size: 34px;
  90. }
  91. .right_day{
  92. color:#26B7FF;
  93. font-size: 34px;
  94. }
  95. .full_day{
  96. color:#26B7FF;
  97. font-size: 34px;
  98. }
  99. .center_day{
  100. color:#26B7FF;
  101. font-size: 34px;
  102. }
  103. .normal_day{
  104. color:#808080;
  105. font-size: 34px;
  106. }