summaryrefslogtreecommitdiffstats
path: root/girok/styles/stopwatch03.css
diff options
context:
space:
mode:
Diffstat (limited to 'girok/styles/stopwatch03.css')
-rw-r--r--girok/styles/stopwatch03.css53
1 files changed, 53 insertions, 0 deletions
diff --git a/girok/styles/stopwatch03.css b/girok/styles/stopwatch03.css
new file mode 100644
index 0000000..ffdbe1e
--- /dev/null
+++ b/girok/styles/stopwatch03.css
@@ -0,0 +1,53 @@
+Stopwatch {
+ layout: horizontal;
+ background: $boost;
+ height: 5;
+ margin: 1;
+ min-width: 50;
+ padding: 1;
+}
+
+TimeDisplay {
+ content-align: center middle;
+ text-opacity: 60%;
+ height: 3;
+}
+
+Button {
+ width: 16;
+}
+
+#start {
+ dock: left;
+}
+
+#stop {
+ dock: left;
+ display: none;
+}
+
+#reset {
+ dock: right;
+}
+
+.started {
+ text-style: bold;
+ background: $success;
+ color: $text;
+}
+
+.started TimeDisplay {
+ text-opacity: 100%;
+}
+
+.started #start {
+ display: none;
+}
+
+.started #stop {
+ display: block;
+}
+
+.started #reset {
+ visibility: hidden;
+}