summaryrefslogtreecommitdiffhomepage
path: root/style.css
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2021-05-21 23:34:35 +0200
committerAki <please@ignore.pl>2021-05-21 23:34:35 +0200
commitb10798f22dc8832b96253641f1215498698909b7 (patch)
treea1a5f0d46bfa4913c4decbacfb1a11bf7c89bd54 /style.css
parentad21ad362ab9fb746ef5263a67f71f7d203bbba0 (diff)
downloadderelict-prototype-b10798f22dc8832b96253641f1215498698909b7.zip
derelict-prototype-b10798f22dc8832b96253641f1215498698909b7.tar.gz
derelict-prototype-b10798f22dc8832b96253641f1215498698909b7.tar.bz2
Added new seekbar
Diffstat (limited to 'style.css')
-rw-r--r--style.css23
1 files changed, 23 insertions, 0 deletions
diff --git a/style.css b/style.css
index 62b6670..bd5073b 100644
--- a/style.css
+++ b/style.css
@@ -186,3 +186,26 @@ body {
height: 100vh;
box-sizing: border-box;
}
+
+.bottom-bar {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ box-sizing: border-box;
+ padding: 0 1em 1em 1em;
+ z-index: 10000;
+}
+
+.bottom-bar .seekbar {
+ width: 100%;
+ height: 0.5em;
+ background: #333;
+ cursor: pointer;
+}
+
+.bottom-bar .seekbar .progress {
+ height: 100%;
+ background: #bf1041;
+ pointer-events: none;
+}