Skip to content

Commit 8315190

Browse files
committed
refactored the score calculation to make duration, accuracy and consistency independant of each other in the score calculation.
mistakes are tracked trough the amount of chars since last mistake on that metric. That allows us to have continuous mistake tracking rather than discrete, as the EMA works way better with continuous variables.
1 parent 31a5e7f commit 8315190

3 files changed

Lines changed: 225 additions & 130 deletions

File tree

app.css

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,17 @@ body {
1919
max-width: 10rem;
2020
}
2121

22-
.generator-settings-module {
23-
max-width: 25rem;
22+
.ema-settings-module {
23+
max-width: 12rem;
24+
}
25+
26+
.ema-settings-group-label {
27+
margin: 0.65rem 0 0.15rem;
28+
font-size: 0.7rem;
29+
font-weight: 600;
30+
letter-spacing: 0.04em;
31+
text-transform: uppercase;
32+
color: rgba(255, 255, 255, 0.45);
2433
}
2534

2635
.card-body {

0 commit comments

Comments
 (0)