-
-
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.
feat: implement encoding to fit (#50)
* update manufacturers.json * add building block for fit encoding * add unimplemented building block for gpx and tcx, clean up gpx and tcx codes * implement service layer encoding, wire to fit, gpx and tcx services * implement FE presentation layer for encoding * fix minor bug in graphs
- Loading branch information
Showing
54 changed files
with
4,253 additions
and
907 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
label { | ||
font-weight: 500; | ||
color: var(--bs-heading-color); | ||
} | ||
|
||
.sub-label { | ||
color: var(--color-text); | ||
font-weight: 700; | ||
font-size: 0.8em; | ||
} | ||
|
||
.emoji { | ||
font-size: 1.2em; | ||
color: white; | ||
} | ||
|
||
p { | ||
font-size: 0.8em; | ||
margin-bottom: 0; | ||
} | ||
|
||
.fs-legend { | ||
font-size: 0.8em; | ||
} | ||
|
||
.color-mandatory { | ||
color: rgba(255,0,0,0.8) | ||
} | ||
|
||
.openivity-form-range::-webkit-slider-thumb { | ||
background-color: var(--color-title) !important; | ||
border: 2px solid var(--color-title) !important; | ||
} | ||
|
||
.openivity-form-range::-moz-range-thumb { | ||
background-color: var(--color-title) !important; | ||
border: 2px solid var(--color-title) !important; | ||
} | ||
|
||
.openivity-form-range::-ms-thumb { | ||
background-color: var(--color-title) !important; | ||
border: 2px solid var(--color-title) !important; | ||
} |
Oops, something went wrong.