From 3012e5234b4279ba36ad6479a7df630b03132302 Mon Sep 17 00:00:00 2001 From: Jan Michel Date: Wed, 19 Oct 2016 15:15:26 +0200 Subject: [PATCH] first version of timer --- timer/index.htm | 53 +++++++++++++++++++++++++++++++++++++++++++++++++ timer/style.css | 44 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 97 insertions(+) create mode 100644 timer/index.htm create mode 100644 timer/style.css diff --git a/timer/index.htm b/timer/index.htm new file mode 100644 index 0000000..29cdf3b --- /dev/null +++ b/timer/index.htm @@ -0,0 +1,53 @@ + + + + Talk Timer + + + + + + + +
+00
+
+ + +
+ + diff --git a/timer/style.css b/timer/style.css new file mode 100644 index 0000000..702632b --- /dev/null +++ b/timer/style.css @@ -0,0 +1,44 @@ +body { + font-family:"Trebuchet MS"; + margin:0; + height:100%; + width:100%; +} + + +#set { +position:absolute; +left:5px; +top:5px; +} + + +#tim { + +font-family:monospace; +font-size:70vw; +width:100%; +height:95%; +text-align:center; +margin:auto; +} + +.warn{ + background:yellow; + color:black; +} + +.hurry{ + background:orange; + color:black; + } + +.shutup{ + background:red; + color:white; + animation: blinker 1s linear infinite; +} + +@keyframes blinker { + 50% { opacity: 0; } +} -- 2.43.0