diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/TeachersTimer/index.html b/TeachersTimer/index.html index 02b54d9..8c84374 100755 --- a/TeachersTimer/index.html +++ b/TeachersTimer/index.html @@ -9,17 +9,35 @@ min-height: 30px; min-width: 100px; border: solid 1px silver; + font-size: 32px; + margin: 10px; } .timer .sum { display: inline-block; - width: 50px; + min-width: 100px; background: gray; margin: 5px; padding-left: 5px; padding-right: 5px; text-align: right; color: white; + + border-left: solid 10px black; + border-right: solid 10px black; + + opacity: 0.8; +} +.timer .sum > span { + margin-left: 10px; + color: silver; +} +.timer .sum > span:last-child { + margin-right: 10px; +} +.timer .sum > span > span { + color: white; + text-shadow: black 0.1em 0.1em 0.2em; } .timer .run { @@ -34,23 +52,36 @@ .timer .duration { margin: 10px; } +.timer .duration { + font-weight: bold; + text-shadow: black 0.1em 0.1em 0.2em; +} +.timer .run:not(:nth-child(2)) .start, +.timer .run:not(:last-child) .end { + display: none; +} + +.timer .run:nth-child(2) { + border-left: solid 10px gray; +} +.timer .run:last-child { + border-right: solid 10px gray; +}