-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (82 loc) · 3.36 KB
/
Copy pathindex.html
File metadata and controls
91 lines (82 loc) · 3.36 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
<!DOCTYPE html>
<html>
<head>
<title>Lightsail Network: Empower the Stellar ecosystem</title>
<style>
body {
background-color: #0d0d0d;
color: #00ff00;
font-family: 'Courier New', Courier, monospace;
padding: 2rem;
line-height: 1.4;
text-shadow: 0 0 5px #00ff00;
}
.terminal {
max-width: 800px;
margin: 0 auto;
}
.prompt::before {
content: "$ ";
color: #00ff00;
}
.cursor {
animation: blink 1s step-start infinite;
background: #00ff00;
display: inline-block;
width: 8px;
height: 15px;
vertical-align: middle;
}
@keyframes blink {
50% { opacity: 0; }
}
a {
color: #00ff00;
text-decoration: none;
transition: all 0.3s ease;
}
a:hover {
background: #003300;
padding: 2px 4px;
margin: -2px -4px;
}
.projects {
margin-left: 20px;
}
.ascii-art {
white-space: pre;
font-size: 12px;
line-height: 1.2;
margin: 20px 0;
}
</style>
</head>
<body>
<div class="terminal">
<div class="ascii-art">
_ _ _ _ _ _ _ _ _ _
| | (_) __ _| |__ | |_ ___ __ _(_) | | \ | | ___| |___ _____ _ __| | __
| | | |/ _` | '_ \| __/ __|/ _` | | | | \| |/ _ \ __\ \ /\ / / _ \| '__| |/ /
| |___| | (_| | | | | |_\__ \ (_| | | | | |\ | __/ |_ \ V V / (_) | | | <
|_____|_|\__, |_| |_|\__|___/\__,_|_|_| |_| \_|\___|\__| \_/\_/ \___/|_| |_|\_\
|___/
</div>
<p class="prompt">MISSION: Empower the Stellar ecosystem</p>
<p class="prompt">PROJECTS:</p>
<div class="projects">
> <a href="https://github.com/StellarCN/py-stellar-base" target="_blank">Stellar Python SDK</a><br>
> <a href="https://github.com/lightsail-network/java-stellar-sdk" target="_blank">Stellar Java SDK</a><br>
> <a href="https://quasar.lightsail.network/" target="_blank">Quasar</a><br>
> <a href="https://crossmesh.xyz/" target="_blank">Cross Mesh - Native USDC Bridge</a><br>
> <a href="https://xlm.sh" target="_blank">xlm.sh</a><br>
> <a href="https://sorobanrpc.com/" target="_blank">Soroban RPC Endpoint</a><br>
> <a href="https://radar.withobsrvr.com/organizations/67feea9f0bd82af3e7d534f6c5e3e0c8" target="_blank">Stellar Full Validators</a><br>
> <a href="https://github.com/lightsail-network/app-stellar" target="_blank">Stellar Ledger App</a><br>
> <a href="https://github.com/trezor/trezor-firmware" target="_blank">Stellar Trezor App</a><br>
> <a href="https://github.com/lightsail-network/lumensigner" target="_blank">LumenSigner</a>
</div>
<p class="prompt">GITHUB: <a href="https://github.com/lightsail-network">github.com/lightsail-network</a></p>
<span class="cursor"></span>
</div>
</body>
</html>