-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (79 loc) · 1.42 KB
/
Copy pathstyle.css
File metadata and controls
91 lines (79 loc) · 1.42 KB
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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #000000;
}
.clock {
position: absolute;
height: 300px;
width: 300px;
border-radius: 50%;
border: solid 30px #79ce72;
background-color: rgb(121 206 114 / 50%);
}
#seconds-hand {
position: absolute;
height: 170px;
width: 4px;
background-color: #f56506;
left: 149px;
bottom: 149px;
transform-origin: 0 100%;
}
#minutes-hand {
position: absolute;
height: 120px;
width: 4px;
background-color: #79ce72;
left: 148px;
bottom: 148px;
transform-origin: 0 100%;
}
#hours-hand {
position: absolute;
height: 80px;
width: 4px;
background-color: #b32cb3;
left: 148px;
bottom: 148px;
transform-origin: 0 100%;
}
.titles {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
border-radius: 20%;
color: #f56506;
}
#center{
position: absolute;
left: 138px;
bottom: 138px;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
height: 20px;
width: 20px;
border-radius: 50%;
background-color: #b32cb3;
}
span {
margin-left: 10px;
color: #b32cb3;
}
.span-seconds {
color: #b32cb3;
}
.span-minutes {
color: #f56506;
}
.span-hours {
color: #79ce72;
}
h1 {
margin-bottom: 160px;
}