-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (104 loc) · 3.43 KB
/
index.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
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
<!doctype html>
<html>
<head>
<title>isTrav: Web Solutions</title>
<style>
body {
display: flex;
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
min-height: 100vh;
margin: 0;
background-color: #fff;
font-family:
Courier New,
monospace;
}
.header {
background: #000;
position: fixed;
top: 0;
left: 0;
right: 0;
text-align: center;
padding: 0;
}
a {
color: #fff;
text-decoration: none;
}
.domain-nav {
background: #000;
color: #ccc;
margin-bottom: 0;
}
.domain-container {
width: 1000px;
margin: 0 auto;
padding: 4px 0 0 0;
font-size: 16px;
text-align: left;
}
.domain-nav a {
color: #ccc !important;
font-size: 1em !important;
font-weight: normal !important;
margin: 0 !important;
}
.domain-nav a:hover {
color: #fff !important;
text-decoration: underline;
}
.container {
display: flex;
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
padding: 20px 20px;
}
canvas {
border-radius: 10px;
}
#clockCanvas {
background: #fff;
padding-top: 30px;
}
#rulersCanvas {
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
width: 700px; /* Match clock canvas width */
}
</style>
</head>
<body>
<div class="header">
<div class="domain-nav">
<div class="domain-container">
<a href="https://c-u-l8er.link">IDEATION</a> (<a
href="https://wrand.cc"
>R&D</a
>
•
<a href="https://webtracks.click">TRACK</a> •
<a href="https://webhost.systems">HOST</a> •
<a href="https://bendscript.com">SCRIPT</a>)
<div style="float: right">
{
<a href="https://istrav.com">WEB SOLUTIONS</a> •
<a href="https://subvind.com">COMMUNITY SOLUTIONS</a>
}
</div>
</div>
</div>
<canvas id="rulersCanvas" width="700" height="80"></canvas>
<div style="margin-top: -6px; margin-bottom: 4px">
<span id="datetime" style="color: #fff"
>current date and time</span
>
</div>
</div>
<div class="container">
<canvas id="clockCanvas" width="700" height="1200"></canvas>
</div>
<script src="clock.js"></script>
<script src="rulers.js"></script>
</body>
</html>