-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (57 loc) · 1.02 KB
/
style.css
File metadata and controls
64 lines (57 loc) · 1.02 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
.clock {
width: 300px;
height: 300px;
background: url("./clock.png");
background-size: contain;
position: relative;
margin: auto;
}
.hour-hand {
width: 5px;
height: 50px;
background-color: blue;
position: absolute;
top: calc(49.5% - 50px);
left: 49.5%;
z-index: 2;
transform-origin: 50% bottom;
}
.minute-hand {
width: 3px;
height: 100px;
background-color: darkred;
position: absolute;
top: calc(49.5% - 100px);
left: 49.5%;
transform-origin: 50% bottom;
}
label {
text-align: center;
font-size: 16px;
font-weight: 700;
}
input, button {
padding: 5px 10px;
text-align: center;
font-size: 16px;
font-weight: 700;
border-radius: 3px;
margin: 5px;
}
button {
background: none;
border: 1px solid black;
cursor: pointer;
}
p {
padding: 10px;
text-align: center;
font-size: 16px;
font-weight: 700;
}
.wrapper {
margin: 10px auto;
width: 300px;
display: flex;
flex-direction: column;
}