diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..69b008c --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +# Windows thumbnail cache files +Thumbs.db +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msm +*.msp + +# Windows shortcuts +*.lnk \ No newline at end of file diff --git a/assets/bg-1440p.jpg b/assets/bg-1440p.jpg new file mode 100644 index 0000000..6e2b940 Binary files /dev/null and b/assets/bg-1440p.jpg differ diff --git a/assets/bg-orig.jpg b/assets/bg-orig.jpg new file mode 100644 index 0000000..89935a5 Binary files /dev/null and b/assets/bg-orig.jpg differ diff --git a/style.css b/style.css index 8d9aa04..60a4513 100755 --- a/style.css +++ b/style.css @@ -3,6 +3,16 @@ html, body { padding: 0; overflow: hidden; } + +body { + height: 100vh; + width: 100vw; + background-image: url('assets/bg-1440p.jpg'); + background-color: #2b2b2b; + background-size: cover; + background-position: bottom right; + background-repeat: no-repeat; +} h1, h2, h3, h4, h5, p { margin: 0; @@ -22,7 +32,7 @@ a:hover { position: absolute; top: 0; left: 0; - background-color: #2b2b2b; + background-color: rgba(0,0,0,0.5); min-width: 100vw; min-height: 100vh; max-width: 100vw;