Skip to content

Commit e26a195

Browse files
committed
removed my workspaces formatting and dropped 0 from background image url on day2
1 parent 23ad2c8 commit e26a195

File tree

1 file changed

+11
-14
lines changed

1 file changed

+11
-14
lines changed

02 - JS and CSS Clock/index-START.html

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
43
<head>
54
<meta charset="UTF-8">
65
<title>JS + CSS Clock</title>
76
</head>
8-
97
<body>
108

119

12-
<div class="clock">
13-
<div class="clock-face">
14-
<div class="hand hour-hand"></div>
15-
<div class="hand min-hand"></div>
16-
<div class="hand second-hand"></div>
10+
<div class="clock">
11+
<div class="clock-face">
12+
<div class="hand hour-hand"></div>
13+
<div class="hand min-hand"></div>
14+
<div class="hand second-hand"></div>
15+
</div>
1716
</div>
18-
</div>
1917

2018

2119
<style>
@@ -45,18 +43,17 @@
4543
position: relative;
4644
padding: 2rem;
4745
box-shadow:
48-
0 0 0 4px rgba(0, 0, 0, 0.1),
46+
0 0 0 4px rgba(0,0,0,0.1),
4947
inset 0 0 0 3px #EFEFEF,
5048
inset 0 0 10px black,
51-
0 0 10px rgba(0, 0, 0, 0.2);
49+
0 0 10px rgba(0,0,0,0.2);
5250
}
5351

5452
.clock-face {
5553
position: relative;
5654
width: 100%;
5755
height: 100%;
58-
transform: translateY(-3px);
59-
/* account for the height of the clock hands */
56+
transform: translateY(-3px); /* account for the height of the clock hands */
6057
}
6158

6259
.hand {
@@ -66,12 +63,12 @@
6663
position: absolute;
6764
top: 50%;
6865
}
66+
6967
</style>
7068

7169
<script>
7270

7371

7472
</script>
7573
</body>
76-
77-
</html>
74+
</html>

0 commit comments

Comments
 (0)