-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
63 lines (54 loc) · 1.08 KB
/
app.css
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
body {
font-family: 'HelveticaNeue-UltraLight',
'Helvetica Neue UltraLight',
'Helvetica Neue',
Helvetica,
Arial,
sans-serif;
margin: 0;
background-color: #efeff5;
}
.stopwatch {text-align: center }
.stopwatch-timer {
font-size: 76px;
font-weight: 100;
line-height: 160px;
margin: 0;
border: solid #c3cfd0;
border-width: 1px 0;
background-color: white;
}
.stopwatch-laps {
padding: 0 0 0 20px;
list-style-type: none;
}
.stopwatch-lap{
font-size: 20px;
line-height: 60px;
padding-right: 20px;
text-align: right;
border-bottom: 1px solid #d9dae0;
}
.stopwatch-lap strong {
float: left;
color: #7f8083;
font-weight: 100;
}
.stopwatch-lap strong::before {content: 'Lap '}
.btn {
font-family: inherit;
font-size: 20px;
display: inline-block;
width: 72px;
height:72px;
margin:24px;
padding: 0;
cursor: pointer;
letter-spacing: 1px;
border: 0;
border-radius:50%;
outline: none;
background: white;
}
.start-btn {color: #4bd761}
.stop-btn {color: #fd3d2a}