-
Notifications
You must be signed in to change notification settings - Fork 0
/
clock.css
79 lines (79 loc) · 1.26 KB
/
clock.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
body {
font-family: monospace;
overflow: hidden;
margin: 0;
padding: 0;
}
fieldset {
visibility: hidden;
border: 1px solid black;
width: 128px;
margin-top: 4px;
padding-top: 0;
}
input {
position: relative;
top: 1px;
}
hr {
border-width: 0;
border-top: 1px solid black;
margin-bottom: 4px;
}
a {
cursor: pointer;
user-select: none;
}
#debug {
white-space: pre;
}
#clockContainer {
width: 100%;
height: 100%;
/* outline: 2px solid; */
position: absolute;
top: 0; bottom: 0; left: 0; right: 0;
margin: auto;
z-index: -1;
}
#crazyClock {
width: 100%;
height: 100%;
}
#moreInfo {
width: 360px;
visibility: hidden;
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
margin: auto;
z-index: 1;
}
#moreInfo *:not(:first-child) {
text-align: center;
margin: 6px 12px;
}
#currentTime {
font-size: 2em;
font-weight: bold;
position: absolute;
bottom: 4px;
left: 12px;
}
#settings {
position: absolute;
right: 8px;
bottom: 6px;
}
#settingsToggle {
margin-top: 6px;
float: right;
}
#extras {
padding-top: 1px;
padding-bottom: 5px;
}
#extras hr {
margin-top: 7px;
margin-bottom: 5px;
}