59 lines
1.2 KiB
CSS
Executable File
59 lines
1.2 KiB
CSS
Executable File
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Nix Storage Portal</title>
|
||
<link rel="stylesheet" href="style.css">
|
||
<style>
|
||
body {
|
||
font-family: "Fira Code", monospace;
|
||
background: #282a36;
|
||
color: #f8f8f2;
|
||
margin: 0;
|
||
padding: 0;
|
||
text-align: center;
|
||
}
|
||
header {
|
||
background: #44475a;
|
||
padding: 40px 20px;
|
||
font-size: 2em;
|
||
color: #ff79c6;
|
||
}
|
||
.container {
|
||
padding: 50px;
|
||
}
|
||
a.button {
|
||
display: inline-block;
|
||
padding: 15px 30px;
|
||
margin: 15px;
|
||
background: #6272a4;
|
||
color: #f8f8f2;
|
||
border-radius: 8px;
|
||
text-decoration: none;
|
||
font-size: 1.2em;
|
||
transition: 0.2s;
|
||
}
|
||
a.button:hover {
|
||
background: #bd93f9;
|
||
color: #fff;
|
||
}
|
||
footer {
|
||
margin-top: 50px;
|
||
font-size: 0.9em;
|
||
color: #6272a4;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<header>🍪 Nix Storage Portal</header>
|
||
<div class="container">
|
||
<p>Welcome to your secure storage interface.</p>
|
||
<a href="filemanager/index.php" class="button">📂 File Manager</a>
|
||
<a href="about.html" class="button">ℹ️ About</a>
|
||
</div>
|
||
<footer>
|
||
<p>Powered by PHP · Dracula Theme · Nix Cookie</p>
|
||
</footer>
|
||
</body>
|
||
</html>
|