summaryrefslogtreecommitdiff
path: root/web/style.css
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2017-11-05 11:05:22 +0200
committerJustin Worthe <justin@worthe-it.co.za>2017-11-05 11:05:22 +0200
commitdc5081b6a44b576f530955050dd59d6b1bba331f (patch)
tree61829f8aceaec015ff0e8b7f9a3f5f972dbdc942 /web/style.css
parent1e37661ea154815fe4e0fa421d5be33d29e0a36d (diff)
Set up web interface to mimic GTK interface
Diffstat (limited to 'web/style.css')
-rw-r--r--web/style.css38
1 files changed, 38 insertions, 0 deletions
diff --git a/web/style.css b/web/style.css
new file mode 100644
index 0000000..77034e9
--- /dev/null
+++ b/web/style.css
@@ -0,0 +1,38 @@
+* {
+ box-sizing: border-box;
+}
+
+#rusty-microphone {
+ max-width: 320px;
+}
+#pitch-indicator-bar-container {
+ width: calc(100% - 2px);
+ height: 30px;
+ position: relative;
+}
+#pitch-indicator-bar {
+ height: 100%;
+ border: 1px solid black;
+ width: 0;
+ position: absolute;
+ left: 50%;
+}
+
+#pitch-indicator-colours {
+ width: 100%;
+ height: 50px;
+}
+
+#flat-indicator {
+ width: 50%;
+ height: 100%;
+ background: blue;
+ float: left;
+}
+
+#sharp-indicator {
+ width: 50%;
+ height: 100%;
+ background: red;
+ float: left;
+}