From 93194f4a1c76375d76061ec060163969aa30e56d Mon Sep 17 00:00:00 2001 From: jabuxas Date: Wed, 18 Sep 2024 10:26:32 -0300 Subject: [PATCH] feat: add static website example --- static/index.html | 19 +++++++++++++++++++ static/style.css | 31 +++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 static/index.html create mode 100644 static/style.css diff --git a/static/index.html b/static/index.html new file mode 100644 index 0000000..9bb416e --- /dev/null +++ b/static/index.html @@ -0,0 +1,19 @@ + + + + + + + + abyss paste + + + + +

abyss paste

+ + + + + + diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..ee4e83c --- /dev/null +++ b/static/style.css @@ -0,0 +1,31 @@ +body { + font-family: Arial, sans-serif; + background-color: #1d1f21; + color: #c5c6c7; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + height: 100vh; + margin: 0; +} + +h1 { + font-size: 3rem; + margin-bottom: 1rem; +} + +button { + padding: 0.75rem 2rem; + background-color: #66fcf1; + border: none; + border-radius: 5px; + color: #1f2833; + font-size: 1rem; + cursor: pointer; + transition: background-color 0.3s; +} + +button:hover { + background-color: #45a29e; +}