From 2b835d7500f66f01a32bd855897fcb0f37239ef1 Mon Sep 17 00:00:00 2001 From: bacalhau Date: Wed, 4 Mar 2026 18:50:24 +0000 Subject: [PATCH] cute css --- src/static/drip.css | 51 +++++++++++++++++++++++-------------- src/templates/index.html | 12 +-------- src/templates/page.html | 6 ++--- src/templates/register.html | 24 +++++++++++------ 4 files changed, 52 insertions(+), 41 deletions(-) diff --git a/src/static/drip.css b/src/static/drip.css index 3f25630..9f82005 100644 --- a/src/static/drip.css +++ b/src/static/drip.css @@ -14,15 +14,17 @@ } body { - background: #101210; - color: #e0e0e0; - text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); - max-width: 800px; + background: #FFE0F4; + color: #FF00AA; + text-shadow: 0px 0px 5px rgba(255, 0, 170, 0.8); + padding: 5px; + max-width: 75%; margin: auto; font-family: font; font-weight: normal; line-height: 1.2rem; word-wrap: break-word; + font-size: 22px; } footer { @@ -42,44 +44,55 @@ strong, b { font-weight: bold; } +section { + margin-top: 32px; + background: #fff; + padding: 5px; + border: medium; + border-color: #FF00AA; + border-radius: 5px; + border-style: dashed; +} + h1 { - color: #00ff00; + color: #FF00AA; text-decoration: underline yellow; text-align: center; } h2 { - color: #00ff00; + color: #FF00AA; } h3 { - color: #00ff00; + color: #FF00AA; } a { - color: #ffff00; + color: #FF699B; } a:hover { color: #ffffff; } -summary { - color: #008800; - background: #101210; +table { + width: 100%; + border-collapse: collapse; } -details { - background: #222; +th, td { + border: 1px solid #ddd; + padding: 8px; + text-align: left; } -summary:hover { - color: #fff; - cursor: pointer; +th { + background-color: #FF00AA; + color: white; } -.service { - padding: 0.5rem; - border: solid thin #ffff00; +tr:nth-child(even) { + background-color: #FF00AA; } diff --git a/src/templates/index.html b/src/templates/index.html index 8bd4d52..9ac697a 100644 --- a/src/templates/index.html +++ b/src/templates/index.html @@ -1,15 +1,5 @@ {% extends "page.html" %} {% block content %} -

Home

-

Page text

-

Page text

-

Page text

-

Page text

-

Page text

-

Page text

-

Page text

-

Page text

-

Page text

-

Page text

+

Main Page

{% endblock %} diff --git a/src/templates/page.html b/src/templates/page.html index 0f95a01..02f1cbd 100644 --- a/src/templates/page.html +++ b/src/templates/page.html @@ -19,9 +19,9 @@ - -{% block content %}{% endblock %} - +
+ {% block content %}{% endblock %} +
diff --git a/src/templates/register.html b/src/templates/register.html index 8cf7492..4502fd4 100644 --- a/src/templates/register.html +++ b/src/templates/register.html @@ -4,14 +4,13 @@

Register

- -

Identity (required)

+

Account (required)



Personal Info (required)

-
-
+
+

-

Location (required)

+

Country (required)


+ +

City (optional)


Physical Attributes (optional)



-
+

Preferences (optional)

-
+

Contacts (required)


@@ -50,7 +59,6 @@

-
{% with messages = get_flashed_messages() %}