-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (100 loc) · 2.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sare - Safe at Rest Encryption</title>
<style>
body {
margin: 0;
overflow: hidden;
}
.line {
position: absolute;
background-color: #000;
width: 1px;
height: 100px;
animation: moveLine linear infinite;
}
@keyframes moveLine {
from {
transform: translateY(-100px);
}
to {
transform: translateY(100vh);
}
}
.container {
font-family: monospace;
position: fixed;
top: 25%;
left: 50%;
transform: translate(-50%, -50%);
color: #000;
font-size: 28px;
text-align: center;
z-index: 1;
}
@media only screen and (max-width: 600px) {
.container {
width: 90%;
}
}
.container img {
width: 90%;
height: auto;
margin-left: auto;
margin-right: auto;
display: block;
}
.navbar {
margin-left: auto;
margin-right: auto;
display: flex;
justify-content: center;
padding: 10px;
position: absolute;
width: 94%;
z-index: 3;
}
.navbar a {
color: #fff;
background-color: #000;
text-decoration: none;
padding: 10px 20px;
margin: 0 10px;
border: 2px solid #000;
transition: background-color 0.3s ease, color 0.3s ease;
font-size: 20px;
letter-spacing: 1px;
}
.navbar a:hover {
background-color: #fff;
color: #000;
}
</style>
</head>
<body>
<div class="container">
<img src="sare.svg">
<p>A Qunatum-Safe Encryption at Rest Tool</p>
<div class="navbar">
<a href="https://Github.com/SareProject">Github</a>
<a href="https://SareProject.github.io/docs">Docs</a>
<a href="https://SareProject.github.io/docs/donation">Support</a>
</div>
</div>
<script>
const numLines = 50;
const body = document.body;
for (let i = 0; i < numLines; i++) {
const line = document.createElement('div');
line.classList.add('line');
line.style.left = `${Math.random() * 100}vw`;
line.style.animationDuration = `${Math.random() * 2 + 1}s`;
line.style.animationDelay = '0.01s';
body.appendChild(line);
}
</script>
</body>
</html>