diff --git a/assets/stylesheets/stopwatch.css b/assets/stylesheets/stopwatch.css index 53cc4f2..70d5612 100644 --- a/assets/stylesheets/stopwatch.css +++ b/assets/stylesheets/stopwatch.css @@ -1,3 +1,26 @@ tr.time-entry.running td.hours { color: red; } + +a.stopwatch_issue_timer[href*="stop"] { + color: red; +} + +a.stopwatch_issue_timer[href*="start"] { + color: limegreen; +} + +/* Mobile only */ +@media (max-width: 899px) { + a.stopwatch_issue_timer[href*="stop"] { + color: red; + background-color: #ffe5e5; + border: 1px solid red; + } + + a.stopwatch_issue_timer[href*="start"] { + color: limegreen; + background-color: #eaffea; + border: 1px solid limegreen; + } +} \ No newline at end of file