From c3a919fc7c807a040d29cf5fea345bdf5d3908f9 Mon Sep 17 00:00:00 2001 From: Subhamoy Biswas Date: Sat, 16 Dec 2023 00:14:08 +0530 Subject: [PATCH] (feat): added more environment variables --- .env.example | 5 ++++- htdocs/assets/style.css | 13 +++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 33190c2..d058e64 100644 --- a/.env.example +++ b/.env.example @@ -1,6 +1,8 @@ #This is an example of secret environmental variables #original environmental variable should be created with .env filename +DOMAIN = "Your Domain Name Here" +LOCAL_IP = "Your Local Development Server IP Here" DB_HOST = "Your Database Host Name Here" DB_USER = "Your Database Username Here" DB_PASS = "Your Database Password Here" @@ -10,4 +12,5 @@ SMTP_HOST = "Your SMTP Sender Host Name Here" SMTP_USER = "Your SMTP Sender Username Here" SMTP_PASS = "Your SMTP Sender Password Here" SMTP_SENDTO = "Your Email Inbox Address to Receive Emails" -SMTP_PORT = 465 \ No newline at end of file +SMTP_PORT = 465 +ANALYTICS_ID = "Your Google Analytics Tracking ID Here" \ No newline at end of file diff --git a/htdocs/assets/style.css b/htdocs/assets/style.css index e0294cf..5c95b55 100644 --- a/htdocs/assets/style.css +++ b/htdocs/assets/style.css @@ -1172,6 +1172,10 @@ video { cursor: pointer; } +.resize { + resize: both; +} + .list-disc { list-style-type: disc; } @@ -1794,6 +1798,10 @@ video { outline-offset: 2px; } +.outline { + outline-style: solid; +} + .blur-2xl { --tw-blur: blur(40px); filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); @@ -1804,6 +1812,11 @@ video { filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); } +.blur { + --tw-blur: blur(8px); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); +} + .filter { filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); }