From 28d8a54365dbdfb7610fcae2ddfb02c919345960 Mon Sep 17 00:00:00 2001 From: vrifox Date: Sun, 30 Jul 2023 22:31:36 +0200 Subject: [PATCH] add more Cozy Town flavour --- _base.html | 10 +--------- style.css | 18 ++++++++++++------ 2 files changed, 13 insertions(+), 15 deletions(-) diff --git a/_base.html b/_base.html index 248f3ad..77f4eee 100644 --- a/_base.html +++ b/_base.html @@ -12,15 +12,7 @@
- {% if app_name == "Riot" %} - [Riot] - {% elif app_name == "Vector" %} - [Vector] - {% elif app_name == "Element" %} - [Element] - {% else %} - [matrix] - {% endif %} +

Cozy Chat

{% block body %}{% endblock %} diff --git a/style.css b/style.css index 0b1515b..0d74365 100644 --- a/style.css +++ b/style.css @@ -3,17 +3,23 @@ html { } body { - background: #f9fafb; + background: rgb(255, 255, 230); max-width: 680px; margin: auto; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-family: 'Lucida Console', 'Courier New', monospace; } .mx_Header { - border-bottom: 3px solid #ddd; - margin-bottom: 1rem; - padding-top: 1rem; - padding-bottom: 1rem; + background-blend-mode: initial; + background-color: var(rgb(250, 220, 120)); + background-image: url(https://cozy.town/home-header-optimized.svg); + background-position: center; + background-size: cover; + color: rgb(50, 50, 50); + display: flex; + flex-direction: column; + height: 40vh; + justify-content: center; text-align: center; }