diff --git a/web/css/style.css b/web/css/style.css index 8d619ae..961b1d4 100644 --- a/web/css/style.css +++ b/web/css/style.css @@ -149,3 +149,50 @@ h1 { max-height: 55vh; } } + +/* ===== PROGRESS BARS ===== */ + +.progress-row { + margin-bottom: 16px; +} + +.progress-label { + font-size: 16px; + margin-bottom: 6px; + color: #ffffff; + opacity: 0.9; +} + +.progress { + width: 100%; + height: 34px; + padding: 6px; + border: 3px solid #8a8a8a; + background: #222; + box-shadow: + inset 0 0 6px rgba(255,255,255,0.15), + 0 0 4px rgba(0,0,0,0.8); +} + +.fill { + height: 100%; + width: 0%; + background: #e6852d; + box-shadow: + inset 0 0 4px rgba(255,255,255,0.2), + 0 0 6px rgba(230,133,45,0.5); + transition: width 0.25s linear; +} + +/* mobile */ + +@media (max-width: 500px) { + .progress { + height: 30px; + padding: 5px; + } + + .progress-label { + font-size: 15px; + } +} diff --git a/web/dashboard.html b/web/dashboard.html index 6467ef1..af40fa6 100644 --- a/web/dashboard.html +++ b/web/dashboard.html @@ -25,6 +25,33 @@
+ +