From 46f1708b1540b7b493223b11738a303bad210da9 Mon Sep 17 00:00:00 2001 From: Yuvraaj Narula Date: Fri, 1 Jan 2021 13:28:05 +0530 Subject: [PATCH 1/4] footer fixes --- CODEOWNERS | 1 + app.js | 3 ++- index.html | 7 +++++++ main.css | 5 +++++ 4 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CODEOWNERS b/CODEOWNERS index 2214701..bda191e 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1 +1,2 @@ * @ion05 +*@yuvraajnarula \ No newline at end of file diff --git a/app.js b/app.js index cdeae33..2e74c66 100644 --- a/app.js +++ b/app.js @@ -35,4 +35,5 @@ function city(e, city) { } document.getElementById(city).style.display = 'block'; e.currentTarget.classList.add('active'); -} \ No newline at end of file +} + diff --git a/index.html b/index.html index 1becb3b..887d9c6 100644 --- a/index.html +++ b/index.html @@ -73,8 +73,15 @@

Explosure Bot

+
+ + diff --git a/main.css b/main.css index e0100f1..c4589ab 100644 --- a/main.css +++ b/main.css @@ -266,3 +266,8 @@ display: block; } } +.made{ + margin-top: 1rem; + margin-bottom: 1rem; + color: #eee; +} \ No newline at end of file From 4d4a6cd314c578a815035efddc39f40a977cd734 Mon Sep 17 00:00:00 2001 From: Yuvraaj Narula Date: Fri, 1 Jan 2021 13:31:04 +0530 Subject: [PATCH 2/4] smooth scroll --- index.html | 4 ++-- main.css | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 887d9c6..e123183 100644 --- a/index.html +++ b/index.html @@ -18,7 +18,7 @@
@@ -33,7 +33,7 @@
-

Our Bots

+

Our Bots

Need a bot ? We have got it !

diff --git a/main.css b/main.css index c4589ab..db59aba 100644 --- a/main.css +++ b/main.css @@ -3,6 +3,7 @@ margin: 0; padding: 0; box-sizing: border-box; + scroll-behavior: smooth; } body { From a9782c7bab309a91e39a34f67459a4e733b292f5 Mon Sep 17 00:00:00 2001 From: Yuvraaj Narula Date: Fri, 1 Jan 2021 14:04:52 +0530 Subject: [PATCH 3/4] about us content --- app.js | 1 - index.html | 25 ++++++++++++++++++++++++- main.css | 8 ++++++-- 3 files changed, 30 insertions(+), 4 deletions(-) diff --git a/app.js b/app.js index 2e74c66..385f690 100644 --- a/app.js +++ b/app.js @@ -36,4 +36,3 @@ function city(e, city) { document.getElementById(city).style.display = 'block'; e.currentTarget.classList.add('active'); } - diff --git a/index.html b/index.html index e123183..59b45d9 100644 --- a/index.html +++ b/index.html @@ -17,7 +17,7 @@ @@ -31,6 +31,29 @@
+
+

+
+ About Us +
+

+
+
+ lifesync logo +
+

+ LifeSync has been made with a single aim: working to provide the best services
+ to the people to make their lives much easier. Our main motive is to utilize
+ the power of technology in way that the users love it. We love to develop + software as it gives us a feeling of contributing to the society.
+
+ All of the LifeSync team knew each other since middle school and we hope to
+ help more people the same way. +

+
+
+ +

Our Bots

diff --git a/main.css b/main.css index db59aba..045752c 100644 --- a/main.css +++ b/main.css @@ -142,12 +142,16 @@ background: black; width: 100%; } - .bots h1{ + .about h1,.bots h1{ font-weight: 700; letter-spacing: 3px; color: #eee; margin-top: 1.5rem; } + .about img{ + width: 455px; + height: 100px; + } ::-webkit-scrollbar{ width: 5px; background: black; @@ -271,4 +275,4 @@ margin-top: 1rem; margin-bottom: 1rem; color: #eee; -} \ No newline at end of file +} From b9cb41740fca8269b575ce71ec7b9f0e4ce3f45d Mon Sep 17 00:00:00 2001 From: Yuvraaj Narula Date: Fri, 1 Jan 2021 14:40:53 +0530 Subject: [PATCH 4/4] about fixes --- index.html | 9 +++++---- main.css | 14 +++++++++++++- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 59b45d9..75762c6 100644 --- a/index.html +++ b/index.html @@ -42,12 +42,13 @@

lifesync logo

- LifeSync has been made with a single aim: working to provide the best services
- to the people to make their lives much easier. Our main motive is to utilize
+ LifeSync has been made with a single aim: working to provide the best services + to the people to make their lives much easier. Our main motive is to utilize the power of technology in way that the users love it. We love to develop - software as it gives us a feeling of contributing to the society.
+ software as it gives us a feeling of contributing to the society.
- All of the LifeSync team knew each other since middle school and we hope to
+
+ All of the LifeSync team knew each other since middle school and we hope to help more people the same way.


diff --git a/main.css b/main.css index 045752c..3d9cc82 100644 --- a/main.css +++ b/main.css @@ -15,7 +15,7 @@ } .hamburger { - position: absolute; + position: fixed; top: 25px; right: 50px; cursor: pointer; @@ -276,3 +276,15 @@ margin-bottom: 1rem; color: #eee; } +.link { + transition: background-size 0.4s ease; + background: linear-gradient(to bottom, transparent 62%, #fff87e 0) center center/0% 75% no-repeat; + color: rgb(255, 255, 255); + text-decoration: none; +} +.link:hover { + background-size: 100% 100%; +} +.link:active { + background-size: 80% 100%; +} \ No newline at end of file