diff options
author | Joris Guyonvarch | 2015-03-16 20:53:02 +0100 |
---|---|---|
committer | Joris Guyonvarch | 2015-03-16 20:53:02 +0100 |
commit | afb9308a106a5cc09271e4420ed16c56dcd73f98 (patch) | |
tree | 90de17be17af00030cb30016918a93d1e783ffae /design | |
parent | 4e5f27a5b1428b9ad190a87a6bf0d4fe187387c9 (diff) |
Adding a stop button
Diffstat (limited to 'design')
-rw-r--r-- | design/design.css | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/design/design.css b/design/design.css index b6047d8..ddf597b 100644 --- a/design/design.css +++ b/design/design.css @@ -34,13 +34,15 @@ h1 { .block { display: inline-block; - background-color: #DDDDDD; + background-color: #EEEEEE; text-align: center; height: 50px; + margin-right: 5px; + border-radius: 2px; } .timer.isRunning > .name { - background-color: green; + color: #33AA22; } .timer > button.name { @@ -52,8 +54,13 @@ h1 { width: 100px; } +.timer > button.stop { + border: none; +} + .timer > button.remove { border: none; + color: #AA2222; } .timer:not(last-child) { |