-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
130 lines (111 loc) · 1.78 KB
/
style.css
File metadata and controls
130 lines (111 loc) · 1.78 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
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
128
129
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
text-align: center;
background-color: #009688;
position: relative;
min-height: 100vh;
}
h1 {
color: aqua;
}
/*Audio*/
/* audio{
display:none;
} */
/*Digital Clock Section*/
.full-date {
font-size: 40px;
}
.digital-clock {
font-size: 500%;
color: #f3971b;
border: 1px solid #f5f1f1;
display: flex;
justify-content: center;
align-items: center;
/* padding: 0 5px 0 5px; */
}
/* Layout */
.main {
display: flex;
padding: 2em;
height: 90vh;
justify-content: center;
align-items: middle;
display: flex;
justify-content: center;
align-items: center;
}
.clockbox,
#clock {
width: 100%;
}
/* Clock styles */
.circle {
fill: none;
stroke: rgb(114, 10, 10);
stroke-width: 15;
stroke-miterlimit: 10;
}
.mid-circle {
fill: #000;
}
.hour-marks {
fill: none;
stroke: #000;
stroke-width: 9;
stroke-miterlimit: 10;
}
.hour-arm {
fill: none;
stroke: #000;
stroke-width: 17;
stroke-miterlimit: 10;
}
.minute-arm {
fill: none;
stroke: #000;
stroke-width: 11;
stroke-miterlimit: 10;
}
.second-arm {
fill: none;
stroke: aquamarine;
stroke-width: 4;
stroke-miterlimit: 10;
}
/* Transparent box ensuring arms center properly. */
.sizing-box {
fill: none;
}
/* Make all arms rotate around the same center point. */
/* Optional: Use transition for animation. */
#hour,
#minute,
#second {
transform-origin: 300px 300px;
transition: transform 0.5s ease-in-out;
}
/*footer styling*/
footer {
display: block;
text-align: center;
position: absolute;
bottom: 0;
width: 100%;
height: 2.5rem;
background-color: #f5f1f1;
display: flex;
justify-content: center;
align-items: center;
}
footer a {
text-decoration: none;
}
footer a:hover {
color: skyblue;
}