-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (119 loc) · 2.76 KB
/
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.page-contaniner{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.clock-container{
background-color: blue;
border-radius: 10px 10px 10px 10px;
border: 10px solid blue;
border-top:2px solid red;
}
.clock{
display: flex;
flex-direction: column;
border-radius: 50%;
width:200px;
height: 200px;
justify-content: center;
align-items: center;
background-color:white;
border:2px solid black;
font-weight: 600;
font-size: 16px;
text-shadow: 3px 1px 1px grey;
}
.one-eleven{
display: flex;
justify-content: space-between;
width: 120px;
/* margin: 10px; */
/* color: red; */
}
.ten-two{
display: flex;
justify-content: space-between;
width: 175px;
margin: 10px;
/* color: blue; */
}
.nine-three{
position: relative;
display: flex;
justify-content:space-between;
align-items: center;
width: 185px;
margin: 10px;
color:red;
}
.twelve, .six{
color: blue;
}
.eight-four{
display: flex;
justify-content: space-between;
width: 183px;
margin-top: 9px;
}
.seven-five{
display: flex;
justify-content: space-between;
width: 120px;
margin-top: 20px;
}
.hour{
position: absolute;
height: 56px;
width: 5px;
bottom: 14px;
background: rgb(65, 222, 227);
z-index: 10;
transform-origin: bottom;
/* transform-origin: top; */
/* transform: rotateZ(360deg); */
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
border-radius: 50%;
border-top-left-radius: 10px;
}
.minute{
position: absolute;
height: 69px;
width: 5px;
background:black;
z-index: 10;
bottom: 19px;
transform-origin: bottom;
/* transform-origin: top; */
/* transform: rotateZ(360deg); */
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
.seconds{
position: absolute;
height: 75px;
width: 2px;
background:red;
z-index: 10;
bottom: 20px;
transform-origin: bottom;
/* transform-origin: top; */
/* transform: rotateZ(360deg); */
}
.container{
content: "";
width: 14px;
height: 14px;
background-color:black;
border-radius: 50%;
position: absolute;
z-index: 12;
text-align: center;
margin-left: -0.2em;
top: -7px;}