From 85c408839fefcef7b752408cf1c5d93dd6ecba6a Mon Sep 17 00:00:00 2001 From: Abdur-Rahmaan Janhangeer Date: Thu, 3 Jul 2025 03:44:31 +0400 Subject: [PATCH 1/2] style: Add wavy line to featuring --- PyBay/content/contents.lr | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/PyBay/content/contents.lr b/PyBay/content/contents.lr index 776e3cf..b4286eb 100644 --- a/PyBay/content/contents.lr +++ b/PyBay/content/contents.lr @@ -16,7 +16,21 @@ center_image: text:
-

Featuring

+

+ Featuring +

+ + + + +
---- From 44f328b621f2681068009c5526c4d58e5c0ddd71 Mon Sep 17 00:00:00 2001 From: Abdur-Rahmaan Janhangeer Date: Thu, 3 Jul 2025 03:44:57 +0400 Subject: [PATCH 2/2] style: Add fade to end of video --- PyBay/webpack/scss/main.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/PyBay/webpack/scss/main.scss b/PyBay/webpack/scss/main.scss index ab04330..b22c3a7 100644 --- a/PyBay/webpack/scss/main.scss +++ b/PyBay/webpack/scss/main.scss @@ -1132,4 +1132,17 @@ header.navbar-custom { } } +.video-wrapper video { + display: block; + width: 100%; + height: auto; + border-bottom-right-radius: 10px; + border-bottom-left-radius: 10px; + + /* Fade out bottom with mask-image */ + -webkit-mask-image: linear-gradient(to top, transparent 0%, black 20%); + mask-image: linear-gradient(to top, transparent 0%, black 20%); +} + + // background-image: url(../images/waves.png), ; \ No newline at end of file