110 lines
3 KiB
HTML
Executable file
110 lines
3 KiB
HTML
Executable file
<!DOCTYPE html>
|
|
<html lang="sv">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
|
<!-- Facebook -->
|
|
|
|
<meta property="og:title" content="Databasen" />
|
|
<meta property="og:locale" content="sv" />
|
|
<meta property="og:description" content="Digitalt Självförsvar" />
|
|
<meta property="og:url" content="https://databasen.net/" />
|
|
<meta property="og:site_name" content="Databasen" />
|
|
<meta property="og:type" content="webpage" />
|
|
<meta property="og:image" content="https://databasen.net/opening.jpeg" />
|
|
<!-- Twitter Card -->
|
|
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:title" content="Databasen" />
|
|
<meta name="twitter:description" content="Digitalt Självförsvar" />
|
|
<meta name="twitter:image" content="https://databasen.net/opening.jpeg" />
|
|
<title>Databasen - Digitalt Självförsvar</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* 👇 MANUALLY ADJUST THIS COLOR to match your image */
|
|
body {
|
|
background-color: #6C12FD; /* ← change this to match your image's vibe */
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
}
|
|
|
|
.image-container {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 20px;
|
|
}
|
|
|
|
.image-wrapper {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
/* 👇 REPLACE 'your-image.jpg' with your actual image path */
|
|
.centered-image {
|
|
display: block;
|
|
max-width: 100%;
|
|
max-height: 80vh;
|
|
width: auto;
|
|
height: auto;
|
|
object-fit: contain;
|
|
box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
/* optional subtle caption */
|
|
.info {
|
|
position: fixed;
|
|
bottom: 16px;
|
|
left: 0;
|
|
right: 0;
|
|
text-align: center;
|
|
font-size: 12px;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
background: rgba(0, 0, 0, 0.3);
|
|
width: fit-content;
|
|
margin: 0 auto;
|
|
padding: 4px 12px;
|
|
border-radius: 20px;
|
|
backdrop-filter: blur(4px);
|
|
pointer-events: none;
|
|
font-family: monospace;
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
.image-container {
|
|
padding: 12px;
|
|
}
|
|
.info {
|
|
font-size: 10px;
|
|
bottom: 10px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="image-container">
|
|
<div class="image-wrapper">
|
|
<!-- 👇 CHANGE 'your-image.jpg' to your actual image file path -->
|
|
<img class="centered-image" src="opening.jpeg" alt="Centered image">
|
|
</div>
|
|
</div>
|
|
<div class="info"><pre>╶┬╮╭─╮╶┬╴╭─╮╭╮ ╭─╮╭─╮╭─╴╭╮╷
|
|
││├─┤ │ ├─┤├┴╮├─┤╰─╮├╴ │╰┤
|
|
╶┴╯╵ ╵ ╵ ╵ ╵╰─╯╵ ╵╰─╯╰─╴╵ ╵
|
|
</pre></div>
|
|
</body>
|
|
</html>
|