-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (55 loc) · 963 Bytes
/
Copy pathstyle.css
File metadata and controls
65 lines (55 loc) · 963 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
body {
overflow: hidden;
}
.clock {
position: fixed;
top: calc((100vh - 100vmin) / 2);
left: calc((100vw - 100vmin) / 2);
width: 100vmin;
height: 100vmin;
}
.face {
transform: translate(50px, 50px);
}
.quarter-hour-tick {
stroke: black;
stroke-width: 0.3px;
}
.hour-tick {
stroke: black;
stroke-width: 1px;
stroke-linecap: round;
}
.hour-text {
fill: black;
text-anchor: middle;
alignment-baseline: central;
font-size: 0.3rem;
font-family: sans-serif;
}
.hand line {
stroke-width: 2.3px;
stroke: gray;
}
.hand text {
fill: white;
font-family: sans-serif;
font-size: 0.1rem;
alignment-baseline: central;
text-anchor: middle;
}
.local line {
stroke: black;
}
line.dateline, .dateline line {
stroke: black;
stroke-width: 0.1px;
}
text.dateline, .dateline text {
fill: black;
font-family: sans-serif;
font-size: 0.1rem;
alignment-baseline: central;
text-anchor: middle;
font-weight: bold;
}