blob: 94cf41aa2e3764b1e0158b2f918a3d14d5e539ec (
plain) (
blame)
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
|
body {
color: #ddd;
background-color: #222;
font-family: 'Lato', sans-serif;
padding: 0em;
margin: 0em;
-webkit-user-select: none;
user-select: none;
}
div#container {
width: 50em;
height: 12em;
margin: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
cursor: default;
}
div#time {
line-height: 8em;
}
div#time p {
font-size: 8em;
font-weight: 100;
text-align: center;
padding: 0em;
margin: 0em;
}
div#date {
margin-top: 1em;
line-height: 1.6em;
}
div#date p {
color: #777;
font-size: 1.6em;
font-weight: 300;
text-align: center;
padding: 0em;
margin: 0em;
}
|