first commit
This commit is contained in:
1
.vscode/settings.json
vendored
Normal file
1
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{}
|
||||||
59
src/css/style.css
Normal file
59
src/css/style.css
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
html,body {
|
||||||
|
height: 100%;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
background: #121212;
|
||||||
|
color: #f4f4f4;
|
||||||
|
font-family: 'Inter', Arial, sans-serif;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
text-align: center;
|
||||||
|
background: rgba(34, 39, 44, 0.92);
|
||||||
|
padding: 3rem 2rem;
|
||||||
|
border-radius: 1.5rem;
|
||||||
|
box-shadow: 0 2px 24px 0 rgba(0,0,0,0.13);
|
||||||
|
max-width: 400px;
|
||||||
|
margin: 1rem;
|
||||||
|
}
|
||||||
|
.emoji {
|
||||||
|
font-size: 2.8rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 2rem;
|
||||||
|
font-weight: 800;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
letter-spacing: -1px;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
color: #babed8;
|
||||||
|
margin-bottom: 1.7rem;
|
||||||
|
font-size: 1.14rem;
|
||||||
|
line-height: 1.55;
|
||||||
|
}
|
||||||
|
.scram {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 0.7rem 1.4rem;
|
||||||
|
background: #70ffd7;
|
||||||
|
color: #1b1e22;
|
||||||
|
border-radius: 999px;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 1.1rem;
|
||||||
|
text-decoration: none;
|
||||||
|
transition: background 0.2s;
|
||||||
|
margin-top: 0.5rem;
|
||||||
|
box-shadow: 0 1px 4px 0 rgba(112,255,215,0.10);
|
||||||
|
}
|
||||||
|
.scram:hover {
|
||||||
|
background: #50bf9c;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
@media (max-width: 430px) {
|
||||||
|
.container { padding: 2rem 0.6rem; }
|
||||||
|
}
|
||||||
20
src/index.html
Normal file
20
src/index.html
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||||
|
<title>mifi.holdings</title>
|
||||||
|
<link rel="stylesheet" href="css/styles.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="emoji">🛸</div>
|
||||||
|
<h1>Nothing to See Here</h1>
|
||||||
|
<p>
|
||||||
|
You’ve stumbled onto <b>mifi.holdings</b> — the legendary vault of digital oddities, curios, and coffee-fueled experiments belonging to a possibly-human, definitely-mysterious entity named <b>mifi</b>.<br><br>
|
||||||
|
There’s nothing here for you.<br>
|
||||||
|
Go on. Shoo. Scram. Or just keep wondering.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user