diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..62c8935 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea/ \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4d54259 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM nginx +ADD src /usr/share/nginx/html +ADD nginx.conf /etc/nginx/conf.d/default.conf \ No newline at end of file diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..8265406 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,16 @@ +server { + listen 80; + server_name localhost; + + charset utf-8; + + location / { + root /usr/share/nginx/html; + index index.html index.htm; + } + + error_page 500 502 503 504 /50x.html; + location = /50x.html { + root /usr/share/nginx/html; + } +} diff --git a/src/bg.jpg b/src/bg.jpg new file mode 100644 index 0000000..6bd060b Binary files /dev/null and b/src/bg.jpg differ diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..def7323 --- /dev/null +++ b/src/index.html @@ -0,0 +1,16 @@ + + + + + + Vikunja + + + + +

Vikunja

+

The Todo-app to organize your life.

+Coming soon. + + + \ No newline at end of file diff --git a/src/style.css b/src/style.css new file mode 100644 index 0000000..e7509b3 --- /dev/null +++ b/src/style.css @@ -0,0 +1,35 @@ +@import url('https://fonts.googleapis.com/css?family=Montserrat:500,600,800'); + + +*{ + padding: 0; + margin: 0; + + box-sizing: border-box; +} + +body{ + background: url('bg.jpg') no-repeat center fixed; + background-size: cover; + font-family: 'Montserrat', sans-serif; + font-size: 14px; + text-align: center; + color: #fff; +} + + +h1{ + margin-top: 40vh; + font-size: 5em; + font-weight: 800; +} + +h3{ + font-size: 2.5em; + font-weight: 600; +} + +span{ + font-size: 1.2em; + font-weight: 500; +} \ No newline at end of file