From 66f851f832b1385017aeb34e93827c4357108d40 Mon Sep 17 00:00:00 2001 From: Emily Frost Date: Mon, 30 Mar 2020 00:09:41 -0500 Subject: [PATCH] Initial commit. --- index.html | 15 +++++++++++++++ style.css | 27 +++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..7f85214 --- /dev/null +++ b/index.html @@ -0,0 +1,15 @@ + + + laserlesbian.systems + + + + +

laserlesbian.systems

+ +

+ Notice: This is a personal server, and the services on this domain are intended for use + by friends and family. +

+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..3be3663 --- /dev/null +++ b/style.css @@ -0,0 +1,27 @@ +:root { + /* Vague palette + Pink -- #f887ff; + Red -- #de004e; + Dark Red -- #860029; + Purple -- #6629a3; + Dark Purple -- #29132e; + */ + + --background: #000000; /* black */ + --primary-color: #6629a3; /* purple */ + --accent-color: #de004e; /* red */ + --highlight-color: #f887ff; /* pink */ +} + +body { + background-color: #000; + color: var(--primary-color); + text-align: center; +} + +a {color: var(--accent-color);} + +a:hover { + color: var(--highlight-color); + text-decoration: none; +}