blob: a1a8ce750c9a31c20185e1f1780337b337a46d0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
h1 {
font-size: 50px;
padding: 20px;
background-color: #111111;
color: white;
letter-spacing: 8px;
}
.addTimer {
background-color: #222222;
padding: 5px;
line-height: 30px;
}
.addTimer > input {
border: 1px solid #111111;
padding: 5px;
height: 30px;
}
.addTimer > button {
border: 1px solid #111111;
height: 30px;
}
.timers {
padding: 10px;
}
.timer {
line-height: 50px;
height: 50px;
}
.block {
display: inline-block;
background-color: #EEEEEE;
text-align: center;
height: 50px;
margin-right: 5px;
border-radius: 2px;
}
.timer.isRunning > .name {
color: #33AA22;
}
.timer > button.name {
width: 200px;
border: none;
}
.timer > .time {
width: 100px;
}
.timer > button.restart {
border: none;
}
.timer > button.stop {
border: none;
}
.timer > button.remove {
border: none;
color: #AA2222;
}
.timer:not(last-child) {
margin-bottom: 10px;
}
|