-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="./src/assets/images/logo/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/assets/css/satoshi.css">
<title>SafeSurf</title>
</head>
<style>
* {
scroll-behavior: smooth;
}
.loading {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: #1a202c;
flex-direction: column;
}
.span {
margin: 0;
padding: 0;
}
.logo {
font-size: 35px;
font-weight: 600;
display: flex;
align-items: center;
gap: 10;
}
.text1 {
color: #f8f8f8;
font-family: 'Satoshi';
}
.text2 {
color: #61bec2;
font-family: 'Satoshi';
}
</style>
<body>
<div id="app">
<div class="loading">
<img width="20" src="/assets/img/loading.svg" alt="">
<div class="logo">
<img width="47" height="47" src="/assets/img/logo.png" alt="Logo" />
<div>
<span class="text1">Safe</span>
<span class="text2">Surf</span>
</div>
</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>