-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (93 loc) · 4.37 KB
/
Copy pathindex.html
File metadata and controls
97 lines (93 loc) · 4.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="icon" href="ressources/icon.svg" />
<link rel="stylesheet" href="style.css" type="text/css" />
<title>The Open Medium</title>
</head>
<body onscroll="scroll()">
<header class="animateHeader">
<div class="title"><img src="ressources/icon.svg" height="50" width="50" /> The Open Medium</div>
</header>
<div class="menu">
<!-- Menu here -->
<span style="color: #404040; background-color: #55ff99;" title="HAY">H</span>
<span style="color: grey; background-color: lightgrey;" title="Coming Soon">C</span>
<span style="color: grey; background-color: lightgrey;" title="Coming Soon">C</span>
<span style="color: grey; background-color: lightgrey;" title="Coming Soon">C</span>
<span style="color: grey; background-color: lightgrey;" title="Coming Soon">C</span>
<span style="color: grey; background-color: lightgrey;" title="Coming Soon">C</span>
<span style="color: grey; background-color: lightgrey;" title="Coming Soon">C</span>
<span style="color: grey; background-color: lightgrey;" title="Coming Soon">C</span>
<span style="color: grey; background-color: lightgrey;" title="Coming Soon">C</span>
</div>
<article>
Hi
</article>
<div class="projects">
Our projects
</div>
<div class="choose">
<div style="color: white; text-align: center; background-color: #55ff99;" title="HAY">
<div style="border-color: #55ff99; color: #55ff99;">
<span>HAY</span>
</div>
HAY ("How are you") is an Open Source social media which aims
to protect everyone's privacy. <a href="#" style="color: blue; text-decoration: underline">Learn more...</a>
<a href="https://github.com/TheOpenMedium/HAY/" style="display: block; position: relative; top: 5px;">
<img src="ressources/GitHub-Mark.png" height="20px" />
<img src="ressources/GitHub-Logo.png" height="20px" />
</a>
</div>
<div style="color: grey; background-color: lightgrey;" title="Coming Soon">
<div style="border-color: lightgrey; color: lightgrey; height: 100%;">
<span>Coming Soon</span>
</div>
</div>
<div style="color: grey; background-color: lightgrey;" title="Coming Soon">
<div style="border-color: lightgrey; color: lightgrey; height: 100%;">
<span>Coming Soon</span>
</div>
</div>
</div>
<div class="choose">
<div style="color: grey; background-color: lightgrey;" title="Coming Soon">
<div style="border-color: lightgrey; color: lightgrey; height: 100%;">
<span>Coming Soon</span>
</div>
</div>
<div style="color: grey; background-color: lightgrey;" title="Coming Soon">
<div style="border-color: lightgrey; color: lightgrey; height: 100%;">
<span>Coming Soon</span>
</div>
</div>
<div style="color: grey; background-color: lightgrey;" title="Coming Soon">
<div style="border-color: lightgrey; color: lightgrey; height: 100%;">
<span>Coming Soon</span>
</div>
</div>
</div>
<footer>
<a href="https://github.com/TheOpenMedium/">
<img src="ressources/GitHub-Mark.png" height="20px" />
<img src="ressources/GitHub-Logo.png" height="20px" />
</a>
</footer>
</body>
<script>
let was_top = true
function scroll() {
if (was_top && window.pageYOffset != 0) {
document.body.firstElementChild.className = "animateHeaderSmall"
document.getElementsByClassName('menu')[0].className = "menuSmall"
was_top = false
}
else if (!was_top && window.pageYOffset == 0) {
document.body.firstElementChild.className = "animateHeader"
document.getElementsByClassName('menuSmall')[0].className = "menu"
was_top = true
}
}
</script>
</html>