diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/index.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..3d2c0cd --- /dev/null +++ b/src/index.html @@ -0,0 +1,51 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <title>the evil transgenders club</title> + <style> + :root { + --trans-blue: #5bcefa; + --trans-pink: #f5a9b8; + } + + body { + background: black; + color: white; + font-family: monospace; + } + + h1 { + color: var(--trans-blue); + text-align: center; + } + + .trans-shadow { + text-shadow: 1px 1px var(--trans-pink), 2px 2px #fff, 3px 3px var(--trans-pink), 4px 4px var(--trans-blue); + } + + .subtitle { + text-align: center; + } + + .main-navigation { + text-align: center; + } + + a { + color: #fff; + } + + a:hover { + background-color: #fff; + color: #000; + } + </style> +</head> + +<body> + <header> + <h1 class="trans-shadow">the evil transgenders club</h1> + <p class="subtitle">soon...</p> + </header> +</body> +</html> |
