diff options
| author | yuzu-eva <stevenhu@web.de> | 2024-10-23 22:53:12 +0200 |
|---|---|---|
| committer | yuzu-eva <stevenhu@web.de> | 2024-10-23 22:53:12 +0200 |
| commit | ddf900c6cc70bf88844f79753b7b412d1a31d3b4 (patch) | |
| tree | 74c6f7395072ccd56aae0fc783ff3fc90444537e | |
initial commit
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | images/favicon-16x16.png | bin | 0 -> 281 bytes | |||
| -rw-r--r-- | images/favicon-32x32.png | bin | 0 -> 561 bytes | |||
| -rw-r--r-- | index.html | 24 | ||||
| -rw-r--r-- | styles/style.css | 24 |
5 files changed, 49 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6b8710a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.git diff --git a/images/favicon-16x16.png b/images/favicon-16x16.png Binary files differnew file mode 100644 index 0000000..41b8244 --- /dev/null +++ b/images/favicon-16x16.png diff --git a/images/favicon-32x32.png b/images/favicon-32x32.png Binary files differnew file mode 100644 index 0000000..b9484ab --- /dev/null +++ b/images/favicon-32x32.png diff --git a/index.html b/index.html new file mode 100644 index 0000000..7e41287 --- /dev/null +++ b/index.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html lang="en"> + +<head> + <title>cafebabe.gay :: eva's site :3</title> + <meta charset="UTF-8"> + <meta name="viewport" content="width=devide-width,initial-scale=1"> + <link rel="stylesheet" href="styles/style.css"> + <link rel="icon" type="image/png" href="images/favicon-32x32.png" sizes="32x32" /> + <link rel="icon" type="image/png" href="images/favicon-16x16.png" sizes="16x16" /> +</head> + +<body> + <div class="center"> + <h1 class="limit-text-width">eva's site :3</h1> + </div> + + <div class="center"> + <h2 class="limit-text-width">UNDER CONSTRUCTION!</h2> + </div> +</body> + + +</html> diff --git a/styles/style.css b/styles/style.css new file mode 100644 index 0000000..728114d --- /dev/null +++ b/styles/style.css @@ -0,0 +1,24 @@ +body { + background-color: black; + color: pink; +} + +p { + padding-bottom: 30px; +} + +.center { + text-align: center; + justify-content: center; + display: flex; +} + +.left { + text-align: left; + justify-content: center; + display: flex; +} + +.limit-text-width { + width: 50%; +} |
