-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (37 loc) · 810 Bytes
/
style.css
File metadata and controls
42 lines (37 loc) · 810 Bytes
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
body {
background-color: #00ff00;
font-size: 40px;
font-family: 'Lilita One';
color: white;
margin: 0px;
padding: 0px;
text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5), 0px -2px 5px rgba(0, 0, 0, 0.5), -2px 0px 5px rgba(0, 0, 0, 0.5), 2px 0px 5px rgba(0, 0, 0, 0.5);
}
.container {
padding: 0px;
margin: 0px;
width: 100%;
text-align: center;
}
.stopwatch {
padding: 0px;
margin: 0px;
display: inline;
}
.label {
font-size: 26px;
text-align: center;
}
#paused {
display: inline-block;
position: relative;
padding: 0px;
margin: 0px;
background: url('pause-image.png') no-repeat;
background-size: contain;
height: 32px;
width: 30px;
}
.hidden {
display: none !important;
}