From 7cbff48066c5c0a6d0479ecce375045f6d41be0f Mon Sep 17 00:00:00 2001 From: Raine Date: Mon, 16 Oct 2023 01:35:05 +0200 Subject: [PATCH] init: initial commit --- .gitignore | 1 + Dockerfile | 3 ++ public/index.html | 25 +++++++++++++++++ public/obj/css/main.css | 62 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 91 insertions(+) create mode 100644 .gitignore create mode 100644 Dockerfile create mode 100644 public/index.html create mode 100644 public/obj/css/main.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..600d2d3 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.vscode \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8d98c03 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM nginx + +COPY public /usr/share/nginx/html \ No newline at end of file diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..075b594 --- /dev/null +++ b/public/index.html @@ -0,0 +1,25 @@ + + + + + + + IXVD - Home + + + +
+

IXVD

+

Home of people that love software, games and developing!

+
+

Links

+ +
+
+
+ + \ No newline at end of file diff --git a/public/obj/css/main.css b/public/obj/css/main.css new file mode 100644 index 0000000..f201cde --- /dev/null +++ b/public/obj/css/main.css @@ -0,0 +1,62 @@ +* { + font-family: Arial, Helvetica, sans-serif; +} + +html { + height: 100%; +} + +body { + margin: 0; + padding: 0; + height: 100%; + display: flex; + justify-content: center; + align-items: center; + background-color: #f0f0f0; +} + +main { + padding: 1rem 2rem; + border: 1px solid #ddd; + border-radius: 4px; + background-color: #fff; +} + +a { + color: #000; + transition: 0.5s all; +} + +a:hover { + color: #333; +} + +@media (prefers-color-scheme: dark) { + body { + background-color: #222; + } + + main { + border-color: #333; + background-color: #333; + color: #fff; + } + + a { + color: #0ff; + } + + a:hover { + color: #0aa; + } +} + +#links { + display: flex; + flex-direction: column; +} + +#links a { + margin-bottom: 0.5rem; +} \ No newline at end of file