-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated scaling so regardless of the values for step_time and target_zones will be properly represented in the visualization. Updated visualization css to clearly identify the visualizion and add a key. Updated the positions for targetZones so there is at least 1 on the screen at all times. Updated useStepTime so the initial values are 0 for everything like they were initially to ensure no other files have issues.
- Loading branch information
1 parent
6f92099
commit aae4026
Showing
3 changed files
with
62 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,46 @@ | ||
.Treadmill { | ||
width: 70vw; | ||
height: 85vh; | ||
margin: 5vh 0; | ||
background-color: grey; | ||
height: 80vh; | ||
margin: 1vh 0; | ||
border-color: darkgray; | ||
border-style: solid; | ||
border-width: .25vw; | ||
background-color: gray; | ||
} | ||
|
||
.Treadmill line { | ||
stroke-width: .02vw; | ||
} | ||
|
||
.TargetZones line { | ||
.TargetZones .max-zone { | ||
stroke: blue; | ||
} | ||
|
||
.TargetZones .min-zone { | ||
stroke: orange; | ||
} | ||
|
||
.StepTimeValues line { | ||
stroke: black; | ||
} | ||
} | ||
|
||
.visual-key { | ||
margin-top: 1vh; | ||
padding: 0 0; | ||
border-radius: 1vh; | ||
border-color: white; | ||
} | ||
|
||
.visual-key ul { | ||
margin-top: .5vh; | ||
list-style-type: none; | ||
padding: .25vh .25vw; | ||
margin: 0; | ||
} | ||
|
||
.visual-key ul li { | ||
font-size: 1vw; | ||
padding: .25vh 0; | ||
text-align:left; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters