commit 20cbc58bddb71062e9a93570ba70b21c1f32dc8b Author: Dominic Date: Fri Jun 20 13:16:01 2025 -0400 inital diff --git a/bg.jpg b/bg.jpg new file mode 100644 index 0000000..46b9063 Binary files /dev/null and b/bg.jpg differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..19a57d4 --- /dev/null +++ b/index.html @@ -0,0 +1,93 @@ + + domspace + + + + + + +
+ +
+ + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..bdc4760 --- /dev/null +++ b/style.css @@ -0,0 +1,39 @@ +body { + background-image: url("bg.jpg"); + background-size: cover; + font-family: monospace, monospace; + font-size: 25px; + color: #e6e6fa; +} + +table, th, td { + border: 1px solid black; +} + +.container { + display: flex; + align-items: center; + justify-content: center; + height: 100%; +} + +.link-container { + width: 300px; + background: rgba(255, 255, 255, 0.11); + box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); + backdrop-filter: blur(10px); + -webkit-backdrop-filter: blur(10px); + border: 1px solid rgba(255, 255, 255, 0.26); + padding: 20px; +} + +.link { + color: #e6e6fa; + text-decoration: none; +} + +.link:hover { + color: #FF3F33; + text-decoration: none; +} +