146 lines
3 KiB
HTML
146 lines
3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>welcome!</title>
|
|
<style>
|
|
:root {
|
|
--bg-color: #07090b;
|
|
--text-color: #eef7fd;
|
|
--accent-color: #00fed4;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--bg-color);
|
|
color: var(--text-color);
|
|
font-family: 'Iosevka', IosevkaTermNF, monospace;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
|
|
.terminal-window {
|
|
width: 100%;
|
|
max-width: 600px;
|
|
border: 2px solid var(--text-color);
|
|
padding: 0;
|
|
box-shadow: 0 0 10px rgba(0, 254, 212, 0);
|
|
}
|
|
|
|
.terminal-header {
|
|
background-color: var(--text-color);
|
|
color: var(--bg-color);
|
|
padding: 5px 10px;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
border-bottom: 4px solid var(--text-color);
|
|
}
|
|
|
|
.terminal-body {
|
|
padding: 20px;
|
|
}
|
|
|
|
.prompt {
|
|
color: var(--accent-color);
|
|
margin-bottom: 15px;
|
|
margin-top: 5px;
|
|
display: block;
|
|
}
|
|
|
|
h1 {
|
|
display: inline;
|
|
font-size: 1.5rem;
|
|
margin: 0 0 30px 0;
|
|
}
|
|
|
|
.cursor {
|
|
display: inline-block;
|
|
width: 8px;
|
|
height: 1.2rem;
|
|
background-color: var(--text-color);
|
|
animation: blink 1s step-end infinite;
|
|
vertical-align: text-bottom;
|
|
margin: 20px 10px 7px 10px;
|
|
}
|
|
|
|
.menu {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
margin: 10px;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
background-color: var(--accent-color);
|
|
color: var(--bg-color);
|
|
border: none;
|
|
padding: 10px 20px;
|
|
font-family: inherit;
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
text-transform: uppercase;
|
|
outline: none;
|
|
}
|
|
|
|
.btn:hover {
|
|
background-color: var(--text-color);
|
|
color: var(--bg-color);
|
|
}
|
|
|
|
.btn::before {
|
|
content: '> ';
|
|
}
|
|
|
|
@keyframes blink {
|
|
|
|
0%,
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
|
|
50% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="terminal-window">
|
|
<div class="terminal-header">
|
|
shellgod.icu
|
|
</div>
|
|
<div class="terminal-body">
|
|
<span class="prompt">user@linux ~ </span>
|
|
<h1>Welcome!<span class="cursor"></span></h1>
|
|
|
|
<div class="menu">
|
|
<a href="https://wiki.lbnt.shellgod.icu" class="btn">lbnt.wiki</a>
|
|
<a href="https://smp8.simplex.im/a#fLY8c1DUreljqVyoZ1kFU6CTIEz4FlOClUw6739Kye4" class="btn">text me
|
|
via SimpleX</a>
|
|
|
|
<a href="https://matrix.to/#/@shellgod:shellgod.icu" class="btn">text me via matrix</a>
|
|
|
|
<a href="https://app.element.io/#/register" class="btn">register on matrix server</a>
|
|
|
|
<a href="files.shellgod.icu" class="btn">file sharing</a>
|
|
|
|
<a href="git.shellgod.icu" class="btn">git server</a>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|