initial commit

This commit is contained in:
radex 2024-12-13 14:25:42 +01:00
commit 985558f33b
Signed by: radex
SSH key fingerprint: SHA256:hvqRXAGG1h89yqnS+cyFTLKQbzjWD4uXIqw7Y+0ws30
4 changed files with 65 additions and 0 deletions

2
Dockerfile Normal file
View file

@ -0,0 +1,2 @@
FROM nginxinc/nginx-unprivileged:1.25.2
COPY src /usr/share/nginx/html

3
README.md Normal file
View file

@ -0,0 +1,3 @@
# ZHP landing page
In construction

12
src/index.html Normal file
View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="pl">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Związek Hakerstwa Polskiego</title>
<link rel="stylesheet" href="style.css">
<main>
<h1>Związek Hakerstwa Polskiego</h1>
<marquee>Under construction</marquee>
</main>

48
src/style.css Normal file
View file

@ -0,0 +1,48 @@
/* CSS reset */
*, *::before, *::after {
box-sizing: border-box;
}
* {
margin: 0;
}
body {
line-height: 1.5;
}
img, picture, video, canvas, svg {
display: block;
max-width: 100%;
}
input, button, textarea, select {
font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
overflow-wrap: break-word;
}
p {
text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
text-wrap: balance;
}
/* custom styles */
body {
background-color: #f8f8f8;
display: flex;
flex-direction: column;
align-items: center;
}
main {
margin: 20px;
width: 100%;
max-width: 800px;
}
h1 {
text-align: center;
font-style: italic;
margin-bottom: 15px;
}