| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- @import '@/utils/common.scss';
- .workout_record_item {
- display: flex;
- margin-left: 46px;
- margin-right: 46px;
- display: flex;
- flex-direction: column;
- background-color: #1C1C1C;
- border-radius: $boxBorderRadius;
- padding-left: 40px;
- padding-right: 40px;
- margin-top: 16px;
- padding-top: 40px;
- padding-bottom: 60px;
- }
- .workout_history_time_bg{
- position: absolute;
- right: 76px;
- bottom: 20px;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .workout_history_time {
- font-size: 28px;
- color: rgba($color: #ffffff, $alpha: 0.4);
- font-weight: 400;
- margin-right: 10px;
- }
- .workout_history_arrow{
- width: 40px;
- height: 40px;
- opacity: 0.2;
- // margin-left: -10px;
- }
- .workout_history_content {
- display: flex;
- flex-direction: column;
- width: 100%;
- }
- .workout_history_item {
- display: flex;
- flex: 1;
- flex-direction: column;
- align-items: center;
- color: rgba($color: #ffffff, $alpha: 0.4);
- }
- .workout_item_value {
- font-size: 40px;
- line-height: 40px;
- color: #EEC01F;
- font-weight: bold;
- margin-top: 10px;
- }
- .workout_summary {
- display: flex;
- flex-direction: column;
- padding-left: 46px;
- flex: 1;
- }
- .workout_summary_title {
- color: #fff;
- opacity: 0.8;
- font-weight: bold;
- font-size: 32px;
- line-height: 32px;
- margin-bottom: 10px;
- }
- .workout_summary_value {
- margin-top: 10px;
- font-size: 48px;
- line-height: 48px;
- font-weight: bold;
- }
|