-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
97 lines (77 loc) · 1.48 KB
/
styles.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
* {
padding:0;
margin:0;
border:0;
font-family:Arial, Helvetica, sans-serif; font-size:1em; }
html, body {
width:100%;
height:100%;
}
body {
text-align:center;
}
sup, small {
font-size:80%; }
a {
color:#666666;
text-decoration:underline; }
a:hover {
color:black; }
table {
border-collapse:collapse; }
h1 {
display:none; }
#time-window {
margin:180px auto 100px;
max-width:792px;
text-align:center; }
@media screen and (max-width:640px) {
#time-window {
margin:60px auto;
max-width:792px;
text-align:center;
}
}
#time-window #dec-time-table {
width:90%;
margin:0 auto;
}
#time-window #dec-time-table td {
width:66px;
text-align:center; }
@media screen and (max-width:640px) {
#time-window #dec-time-table td {
min-width:25px;
text-align:center;
}
}
#time-window #dec-time-table .dec-time-digit {
font-size:80px;
font-family:monospace;
color:black;
font-weight:bold;
text-align:center;
line-height:1em; }
@media screen and (max-width:640px) {
#time-window #dec-time-table .dec-time-digit {
font-size:36px;
}
}
#time-window #dec-time-table .dec-date {
color:#666666; }
#time-window #dec-time-table .abbreviations {
font-size:10px; }
@media screen and (max-width:640px) {
#time-window #dec-time-table .abbreviations {
font-size:8px;
}
}
#time-window .normal-time {
padding-top:18px;
font-weight:bold;
line-height:18px; }
#time-window #normal-date {
color:#666666; }
#time-window .description {
padding-top:18px;
font-size:80%;; }