commit 01acb20fbc3b92a906ffe5e8fe169d15cf6f81cc Author: Nick Bouwhuis Date: Wed Dec 30 16:38:19 2020 +0100 initial commit diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..e9e58c3 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,16 @@ +pipeline: + publish: + image: drillster/drone-rsync + hosts: + from_secret: rsync_host + key: + from_secret: rsync_key + user: + from_secret: rsync_user + source: ./ + target: /var/www/vhosts/nick.bouwhuis.io/ikwilvanmijnicmpaf.nl + recursive: true + delete: true + when: + branch: [master] + event: [push] \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..c0df95b --- /dev/null +++ b/index.html @@ -0,0 +1,25 @@ + + + + + ikwilvanmijnicmpaf.nl + + + + + + + + + + + + + + + + +
+ + + \ No newline at end of file diff --git a/res/logo.png b/res/logo.png new file mode 100644 index 0000000..d4865e4 Binary files /dev/null and b/res/logo.png differ diff --git a/res/style.css b/res/style.css new file mode 100644 index 0000000..249800b --- /dev/null +++ b/res/style.css @@ -0,0 +1,28 @@ +html { + width: 100%; + height: 100%; +} + +body { + width: 100%; + height: 100%; + margin: 0px; + position: relative; +} + +div.shadow { + position: absolute; + max-width: 45%; + max-height: 45%; + top: 50%; + left: 50%; + overflow: visible; +} + +img.logo { + position: relative; + max-width: 100%; + max-height: 100%; + margin-top: -50%; + margin-left: -50%; +} \ No newline at end of file