From 4f5c99bced8d4ceb7c1fd428f255fa32219a1165 Mon Sep 17 00:00:00 2001 From: victorAnumudu Date: Sat, 4 Nov 2023 10:08:09 +0100 Subject: [PATCH] banner section layout --- src/assets/css/main.css | 61 +++++++++++++++++++++++++++++ src/components/lnd/Lnd.js | 82 ++++++++++++++++++++------------------- src/lib/localImgLoad.js | 2 + 3 files changed, 106 insertions(+), 39 deletions(-) create mode 100644 src/lib/localImgLoad.js diff --git a/src/assets/css/main.css b/src/assets/css/main.css index 5afa7cf..113d9ee 100755 --- a/src/assets/css/main.css +++ b/src/assets/css/main.css @@ -8457,4 +8457,65 @@ blockquote cite { animation-timing-function: linear; animation-duration: .5s; animation-fill-mode: forwards; */ +} + + + +/* +LND PAGE STYLE STARTS HERE +*/ + +/* 1.0 BANNER SECTION */ +.banner_section{ + background: linear-gradient(to left top, #0e1133, #15233d); +} +.banner_shape1{ + left: 0; + top: 50%; + transform: rotate(45deg); +} +.banner_shape2{ + top: 40%; + left: 90%; + transform: rotate(180deg); +} +.banner_shape3{ + bottom: 0; + right: 0; + transform: rotate(40deg); +} +.banner_text h1{ + font-size: 50px; + line-height: normal; +} +.banner_text p{ + font-size: 16px; +} +.yt_video .play-button{ + cursor: pointer; +} +.yt_video .play_btn{ + width: 50px; + height: 50px; + background-color: rgba(255,255,255,0.1); +} +.yt_video .play_btn img{ + background-color: rgba(255,255,255,0.3); +} +.banner_images .img-con{ + /* gap: 10px; */ +} + +@media (max-width: 767px) { + .banner_text h1{ + font-size: 20px; + } + .banner_images img{ + width: 80%; + } +} +@media (min-width: 768px) and (max-width: 992px) { + .banner_text h1{ + font-size: 30px; + } } \ No newline at end of file diff --git a/src/components/lnd/Lnd.js b/src/components/lnd/Lnd.js index 66e5b22..bb7d451 100644 --- a/src/components/lnd/Lnd.js +++ b/src/components/lnd/Lnd.js @@ -39,6 +39,8 @@ import Faq from './LndParts/Faq/Main' import Download from './LndParts/Download/Main' import Story from './LndParts/Story/Main' +import localImgLoad from '../../lib/localImgLoad' + const Lnd = ({setnavbar,setfooter,setbrdcum}) => { @@ -133,65 +135,67 @@ const Lnd = ({setnavbar,setfooter,setbrdcum}) => { */} -
+
-
- image - image - image +
+ image + image + image -
-
-

Best way to manage your customers easily.

-

Lorem Ipsum is simply dummy text of the printing and setting indus orem Ipsum has been the industrys standard dummy text ever. -

+
+
+

Best way to manage your customers easily.

+

Lorem Ipsum is simply dummy text of the printing and setting indus orem Ipsum has been the industrys standard dummy text ever.

-
+
-
-
-
- image +
+
+
+ image
-
-
- image +
+
+ image
-
-
- image +
+
+ image
-
-
- image +
+
+ image
-
-
- image +
+
+ image
@@ -204,14 +208,14 @@ const Lnd = ({setnavbar,setfooter,setbrdcum}) => { diff --git a/src/lib/localImgLoad.js b/src/lib/localImgLoad.js new file mode 100644 index 0000000..2d33975 --- /dev/null +++ b/src/lib/localImgLoad.js @@ -0,0 +1,2 @@ +const localImgLoad = (location) => require(`../assets/${location}`); +export default localImgLoad \ No newline at end of file