MainCard.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .ring_center {
  2. position: absolute;
  3. left: 0;
  4. top: 0;
  5. right: 0;
  6. bottom: 0;
  7. align-items: center;
  8. justify-content: center;
  9. display: flex;
  10. flex-direction: column;
  11. }
  12. .badge {
  13. width: 16px;
  14. height: 16px;
  15. border-radius: 8px;
  16. background-color: red;
  17. position: absolute;
  18. right: 20px;
  19. top: 10px;
  20. }
  21. .log_row {
  22. display: flex;
  23. flex-direction: row;
  24. align-items: center;
  25. justify-content: space-between;
  26. width: 652px;
  27. padding-bottom: 20px;
  28. margin-bottom: 20px;
  29. border-bottom: solid 2px #99999966;
  30. }
  31. .fast_log_btn {
  32. display: flex;
  33. height: 88px;
  34. border-radius: 44px;
  35. padding: 0 52px;
  36. align-items: center;
  37. justify-content: center;
  38. background-color: rgba(2, 182, 253, 0.2);
  39. color: #02B6FD;
  40. position: relative;
  41. }
  42. .fast_log_btn_disable {
  43. background-color: rgba(202, 202, 202, 0.2);
  44. color: #CACACA;
  45. }
  46. .fast_log_eat_btn{
  47. color:#FE810C;
  48. background-color: rgba(254, 129, 12, 0.2);
  49. }
  50. .schedule {
  51. display: flex;
  52. flex-direction: column;
  53. }
  54. .schedule_name {
  55. color: #CACACA;
  56. font-size: 24px;
  57. }
  58. .schedule_time {
  59. color: #818080;
  60. font-weight: bold;
  61. font-size: 40px;
  62. }