Files
Site-Web/data/theme.css
T
2026-05-16 11:10:19 +02:00

59 lines
1.2 KiB
CSS
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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>