-
Notifications
You must be signed in to change notification settings - Fork 0
/
the_clock.html
58 lines (58 loc) · 1.26 KB
/
the_clock.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>the_clock</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* { box-sizing:border-box; margin:0; padding:0; }
body {
margin:0;
padding:2vh 2vw;
background-color:rgba(0,222,222,0.7);
width:100vw;
height:100vh;
}
#app {
margin:0;
padding:0;
text-align:center;
margin-bottom:0;
margin-top:0;
background-color:rgba(0,222,222,0.7);
border:3px double rgba(0,0,64,1);
}
#clock {
height:80vh;
width:80vw;
margin:auto;
margin-top:1vh;
margin-bottom:1vh;
}
#app p.fn {
font-family:monospace;
padding:0.75vh 1vw 0.25vh 1vw;
}
#app p.fn a {
padding:0.75vh 1vw 0.25vh 1vw;
text-decoration:none;
color:blue;
background-color:silver;
}
#app p.fn a:hover, #app p.fn a:focus {
text-decoration:underline;
color:black;
background-color:yellow;
}
</style>
</head>
<body>
<div id="app">
<p class="fn">
<a href"./SVG/the_clock.svg">./SVG/the_clock.svg</a>
</p>
<object id="clock" data="./SVG/the_clock.svg"></object>
</div>
</body>
</html>