WorkoutHistory.scss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. @import '@/utils/common.scss';
  2. .workout_record_item {
  3. display: flex;
  4. margin-left: 46px;
  5. margin-right: 46px;
  6. display: flex;
  7. flex-direction: column;
  8. background-color: #1C1C1C;
  9. border-radius: $boxBorderRadius;
  10. padding-left: 40px;
  11. padding-right: 40px;
  12. margin-top: 16px;
  13. padding-top: 40px;
  14. padding-bottom: 60px;
  15. }
  16. .workout_history_time_bg{
  17. position: absolute;
  18. right: 76px;
  19. bottom: 20px;
  20. display: flex;
  21. flex-direction: row;
  22. align-items: center;
  23. }
  24. .workout_history_time {
  25. font-size: 28px;
  26. color: rgba($color: #ffffff, $alpha: 0.4);
  27. font-weight: 400;
  28. margin-right: 10px;
  29. }
  30. .workout_history_arrow{
  31. width: 40px;
  32. height: 40px;
  33. opacity: 0.2;
  34. // margin-left: -10px;
  35. }
  36. .workout_history_content {
  37. display: flex;
  38. flex-direction: column;
  39. width: 100%;
  40. }
  41. .workout_history_item {
  42. display: flex;
  43. flex: 1;
  44. flex-direction: column;
  45. align-items: center;
  46. color: rgba($color: #ffffff, $alpha: 0.4);
  47. }
  48. .workout_item_value {
  49. font-size: 40px;
  50. line-height: 40px;
  51. color: #EEC01F;
  52. font-weight: bold;
  53. margin-top: 10px;
  54. }
  55. .workout_summary {
  56. display: flex;
  57. flex-direction: column;
  58. padding-left: 46px;
  59. flex: 1;
  60. }
  61. .workout_summary_title {
  62. color: #fff;
  63. opacity: 0.8;
  64. font-weight: bold;
  65. font-size: 32px;
  66. line-height: 32px;
  67. margin-bottom: 10px;
  68. }
  69. .workout_summary_value {
  70. margin-top: 10px;
  71. font-size: 48px;
  72. line-height: 48px;
  73. font-weight: bold;
  74. }