-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (50 loc) · 1021 Bytes
/
Copy pathstyles.css
File metadata and controls
55 lines (50 loc) · 1021 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
body {
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(43, 43, 43);
height: 100vh;
}
.clock-container {
height: 300px;
width: 300px;
border-radius: 150px;
border: solid 5px rgb(252, 255, 55);
position: absolute;
}
#seconds-hand {
height: 130px;
width: 2px;
background-color: rgb(70, 255, 255);
position: absolute;
left: 149px;
bottom: 149px;
transform-origin: 0 100%;
}
#minutes-hand {
height: 100px;
width: 2px;
background-color: rgb(253, 120, 227);
position: absolute;
left: 149px;
bottom: 149px;
transform-origin: 0 100%;
}
#hours-hand {
height: 80px;
width: 4px;
background-color: rgb(206, 49, 174);
position: absolute;
left: 148px;
bottom: 148px;
transform-origin: 0 100%;
}
#center-blob {
height: 18px;
width: 18px;
border-radius: 9px;
background-color: rgb(252, 255, 55);
position: absolute;
bottom: 142px;
left: 142px;
}