-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.html
More file actions
51 lines (51 loc) · 1.22 KB
/
start.html
File metadata and controls
51 lines (51 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>GhostShell Start</title>
<style>
body {
margin: 0;
height: 100vh;
background: #0f0f0f;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #00f2ff;
font-family: 'Segoe UI', sans-serif;
overflow: hidden;
}
.logo {
width: 160px;
height: 160px;
}
.title {
margin-top: 20px;
font-size: 24px;
letter-spacing: 1px;
color: #ffffff;
}
.subtitle {
margin-top: 6px;
font-size: 14px;
color: #999;
}
svg {
width: 100%;
height: 100%;
fill: #00f2ff;
}
</style>
</head>
<body>
<div class="logo">
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
<path d="M32 4C18 4 6 16 6 30c0 9.6 5.1 18 12.8 22.6L32 60l13.2-7.4C52.9 48 58 39.6 58 30 58 16 46 4 32 4zm0 6c11.3 0 20 8.7 20 20 0 7.4-3.9 13.9-10.1 17.4L32 53.1l-9.9-5.7C15.9 43.9 12 37.4 12 30c0-11.3 8.7-20 20-20z"/>
<circle cx="32" cy="30" r="8" />
</svg>
</div>
<div class="title">Welcome to GhostShell</div>
<div class="subtitle">Your privacy-first browser</div>
</body>
</html>