-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (74 loc) · 944 Bytes
/
style.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
* {
font-family: 'Fira Code', monospace;
}
body {
width: 80em;
margin: 0 auto;
text-align: center;
}
h1 {
text-align: center;
font-size: 2.5em;
}
.title {
margin: 1em;
font-size: 4em;
}
.main {
display: flex;
justify-content: center;
align-items: middle;
margin: 8em;
margin-top: 2em;
}
.clockbox,
#clock,
#clock3 {
width: 24em;
height: 20em;
}
.circle,
.hour-marks,
.hour-arm,
.minute-arm,
.second-arm {
fill: none;
stroke: #000;
}
.circle,
.hour-marks,
.hour-arm,
.minute-arm,
.second-arm {
stroke-miterlimit: 10;
}
.circle,
.hour-marks {
stroke-width: 5;
}
.hour-arm {
stroke-width: 8;
}
.minute-arm {
stroke-width: 6;
}
.second-arm {
stroke-width: 4;
}
.mid-circle {
fill: #000;
}
.sizing-box {
fill: none;
}
#hour1,
#minute1,
#second1,
#hour2,
#minute2,
#second2,
#hour3,
#minute3,
#second3 {
transform-origin: 300px 300px;
}