-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (61 loc) · 1.23 KB
/
Copy pathstyle.css
File metadata and controls
65 lines (61 loc) · 1.23 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.clock-container {
background-color: rgb(248, 246, 246);
height: 100vh;
width: 100%;
background-image: url(./410-4109648_printable-clock-templates-clock-face-without-hands.png);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
mix-blend-mode :screen;
position: relative;
}
.hour-hand{
height: 28vh;
width: 0.4vw;
background-color: black;
position: absolute;
left: 49.55%;
top: 22%;
transform-origin: bottom;
}
.minute-hand{
height: 31vh;
width: 0.4vw;
background-color: black;
position: absolute;
left: 49.55%;
top: 19%;
transform-origin: bottom;
}
.second-hand{
height: 31vh;
width: 0.4vw;
background-color: black;
position: absolute;
left: 49.55%;
top: 19%;
transform-origin: bottom;
}
.arrow-left{
position: relative;
height: 0.4vw;
width: 2rem;
background-color: black;
left: -1.4rem;
top:0.51rem;
transform: rotate(-45deg);
}
.arrow-right{
position: relative;
height: 0.4vw;
width: 2rem;
background-color: black;
left: -0.2rem;
top:0.12rem;
transform: rotate(45deg);
}