-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (95 loc) · 3.87 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
<!DOCTYPE html>
<html>
<head>
<title>OverClocked</title>
<link rel="icon" href="https://raw.githubusercontent.com/xevozen/OverClocked/main/icon.png" type="image/x-icon">
<meta name="description" content="Clock, but on a different level. Not just any other clock on the internet. Visit to experience.">
<link rel="canonical" href="https://xevozen.github.io/OverClocked/"/>
<meta name="robots" content="index, follow">
<meta property="og:type" content="website" />
<meta property="og:title" content="Not just any other clock on the internet." />
<meta property="og:description" content="Clock, but on a different level. Not just any other clock on the internet. Visit to experience." />
<meta property="og:image" content="icon.png" />
<meta property="og:url" content="https://xevozen.github.io/OverClocked/" />
<meta property="og:site_name" content="OverClocked" />
<meta property="og:locale" content="en-US">
<meta name="twitter:title" content="Not just any other clock on the internet.">
<meta name="twitter:description" content="Clock, but on a different level. Not just any other clock on the internet. Visit to experience.">
<meta name="twitter:image" content="icon.png">
<meta name="twitter:site" content="@souhardhya">
<meta name="twitter:creator" content="@souhardhya">
<meta name="keywords" content="Clock, but on a different level. Not just any other clock on the internet. Visit to experience." />
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">
</head>
<body style="background-color: #efeeee;">
<div class="outer-shell">
<dir class="inner-shell">
<div class="canvas-outer">
<div class="canvas-inner">
</div>
</div>
</dir>
</div>
<div class="right-panel">
<div id="right-panel-title">Over<br>Clocked</div>
<div id="right-panel-description">Not just any clock on the internet</div>
<div id="right-panel-profile">
<a href="https://www.linkedin.com/in/xevozen/" target="_blank">
<div class="profile">
<i class="fa fa-linkedin fa-2x"></i>
</div>
</a>
<a href="https://github.com/xevozen" target="_blank">
<div class="profile">
<i class="fa fa-github fa-2x"></i>
</div>
</a>
<a href="">
<div class="profile">
<i class="fa fa-link fa-2x"></i>
</div>
</a>
</div>
<div id="right-panel-footer">
Dev <i class="fa fa-heart" style="color: #e63946;"></i> by <a href="https://github.com/xevozen"> Xevozen</a>
<br>
<a href="https://github.com/xevozen/OverClocked">GitHub Repository</a>
<br>
<a href="https://github.com/xevozen/OverClocked/blob/main/LICENSE">Licence</a>
</div>
</div>
<div id="right-panel-button" onclick="showrightpanel()">
<i class="fa fa-info"></i>
</div>
<div id="rotate">
<h2>Mobile Device</h2>
<div class="content">
Device in portrait mode. This website works best in landscape mode. Go Landscape?
</div>
<div class="confirm" onclick="rotate()">
<label>OK</label>
</div>
</div>
<!-- Blank video file to keep the screen awake specially for mobile devices. -->
<video autoplay loop muted style="visibility: hidden; position: fixed; left: 0">
<source src="blank_video.mp4" type="video/mp4">
</video>
<div id="popup1" class="overlay">
<div class="popup">
<h2>Go Landscape?</h2>
<a class="close fa fa-close" onclick="closepopup()"></a>
<div class="content">
This website works best in landscape mode. Go Landscape?
</div>
<div class="confirm" onclick="rotate()">
<label>OK</label>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>