-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtimer.css
More file actions
42 lines (39 loc) · 700 Bytes
/
timer.css
File metadata and controls
42 lines (39 loc) · 700 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
#task{
white-space: nowrap;
font-weight: bold;
color: white;
font-size: 500%;
top:25%;
left:50%;
position: absolute;
transform: translate(-50%, -50%);
visibility: hidden;
text-shadow: 5px 5px #666
}
#timeLeft{
white-space: nowrap;
font-weight: bold;
color: white;
font-size: 2500%;
top:50%;
left:50%;
position: absolute;
transform: translate(-50%, -50%);
visibility: hidden;
width: 50%;
}
#start{
white-space: nowrap;
font-weight: bold;
color: white;
font-size: 2000%;
top:50%;
left:50%;
position: absolute;
transform: translate(-50%, -50%);
}
body{
background-color: #3D3D3D;
font-family: 'Oswald', sans-serif;
text-shadow: 5px 5px #666
}