From: Jan Michel Date: Wed, 19 Oct 2016 13:15:26 +0000 (+0200) Subject: first version of timer X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=3012e5234b4279ba36ad6479a7df630b03132302;p=labtools.git first version of timer --- 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; } +}