From fde6409667e296ee8b5b84b5a0953eb03c293d84 Mon Sep 17 00:00:00 2001
From: Anjalikumari148 <55693389+Anjalikumari148@users.noreply.github.com>
Date: Fri, 22 Jan 2021 16:32:23 +0530
Subject: [PATCH 1/7] Create nav.html
---
Change required in team page/Navbars/nav.html | 57 +++++++++++++++++++
1 file changed, 57 insertions(+)
create mode 100644 Change required in team page/Navbars/nav.html
diff --git a/Change required in team page/Navbars/nav.html b/Change required in team page/Navbars/nav.html
new file mode 100644
index 0000000..9ec2dd5
--- /dev/null
+++ b/Change required in team page/Navbars/nav.html
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ dehaze
+
+
+
+
+
+
+
+
+
+
+
+
Kumari Anjali
+
+
+
+
+
+
+
+
+
+
+
+
From d3803fe2eac280ec9170275bdaf48d87bce09f40 Mon Sep 17 00:00:00 2001
From: Anjalikumari148 <55693389+Anjalikumari148@users.noreply.github.com>
Date: Fri, 22 Jan 2021 16:34:25 +0530
Subject: [PATCH 2/7] Add files via upload
---
.../Navbars/NavStyle.css | 123 ++++++++++++++++++
.../Navbars/Navbar.js | 5 +
2 files changed, 128 insertions(+)
create mode 100644 Change required in team page/Navbars/NavStyle.css
create mode 100644 Change required in team page/Navbars/Navbar.js
diff --git a/Change required in team page/Navbars/NavStyle.css b/Change required in team page/Navbars/NavStyle.css
new file mode 100644
index 0000000..aafcb26
--- /dev/null
+++ b/Change required in team page/Navbars/NavStyle.css
@@ -0,0 +1,123 @@
+* {
+ padding: 0;
+ margin: 0;
+ text-decoration: none;
+ list-style: none;
+}
+
+body {
+ font-family: montserrat;
+}
+
+.navbar {
+ height: 80px;
+ width: 100%;
+ background: teal;
+}
+
+label.logo {
+ font-size: 35px;
+ font-weight: bold;
+ color: white;
+ padding: 0 100px;
+ line-height: 80px;
+}
+
+.navbar ul {
+ float: right;
+ margin-right: 40px;
+}
+
+.navbar li {
+ display: inline-block;
+ margin: 0 8px;
+ line-height: 80px;
+}
+
+.navbar a {
+ color: white;
+ font-size: 18px;
+ text-transform: uppercase;
+ border: 1px solid transparent;
+ padding: 0;
+ border-radius: 3px;
+}
+
+.navlink a,
+a:hover {
+ border: 1px solid white;
+ padding: 4px;
+ transition: .5s;
+}
+
+.material-icons {
+ color: white;
+ font-size: 30px;
+ line-height: 80px;
+ float: right;
+ margin-right: 40px;
+ cursor: pointer;
+}
+
+@media (max-width: 1048px) {
+ .material-icons {
+ font-size: 32px;
+ padding-left: 60px;
+ }
+ .navbar ul {
+ margin-right: 20px;
+ }
+ .navlink a {
+ font-size: 17px;
+ }
+}
+
+@media (max-width :909px) {
+ .material-icons {
+ display: block;
+ }
+ .navbar ul {
+ position: fixed;
+ width: 100%;
+ height: 100vh;
+ background: #2f3640;
+ top: 80px;
+ left: -100%;
+ text-align: center;
+ }
+ .navbar li {
+ display: block;
+ margin: 50px 0;
+ line-height: 30px;
+ }
+ .navbar a {
+ font-size: 20px;
+ }
+ .navbar a.active,
+ a:hover {
+ border: none;
+ color: blue;
+ }
+ .navbar ul.show {
+ left: 0;
+ }
+}
+
+.image {
+ vertical-align: middle;
+ margin-left: auto;
+ margin-right: auto;
+ margin-top: 6px;
+ padding: 10px;
+ width: 150px;
+ height: 150px;
+ border-radius: 50%;
+ display: -ms-flexbox;
+ display: flex;
+ align-items: center;
+ border: solid 1px black;
+}
+
+.link {
+ text-align: center;
+}
\ No newline at end of file
diff --git a/Change required in team page/Navbars/Navbar.js b/Change required in team page/Navbars/Navbar.js
new file mode 100644
index 0000000..ca45da1
--- /dev/null
+++ b/Change required in team page/Navbars/Navbar.js
@@ -0,0 +1,5 @@
+$(document).ready(function() {
+ $('.material-icons').click(function() {
+ $('ul').toggleClass('show')
+ });
+});
\ No newline at end of file
From 56c12b76005a1f2cdba80b8d988013a288b8be2c Mon Sep 17 00:00:00 2001
From: Anjalikumari148 <55693389+Anjalikumari148@users.noreply.github.com>
Date: Fri, 22 Jan 2021 16:35:52 +0530
Subject: [PATCH 3/7] Create Drive.html
---
.../Navbars/Drive/Drive.html | 20 +++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 Change required in team page/Navbars/Drive/Drive.html
diff --git a/Change required in team page/Navbars/Drive/Drive.html b/Change required in team page/Navbars/Drive/Drive.html
new file mode 100644
index 0000000..2409e10
--- /dev/null
+++ b/Change required in team page/Navbars/Drive/Drive.html
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
From d9c36a9e9b2323b655ca6d2cbae19f2231877641 Mon Sep 17 00:00:00 2001
From: Anjalikumari148 <55693389+Anjalikumari148@users.noreply.github.com>
Date: Fri, 22 Jan 2021 16:37:21 +0530
Subject: [PATCH 4/7] Create footer.html
---
.../Navbars/Footer/footer.html | 63 +++++++++++++++++++
1 file changed, 63 insertions(+)
create mode 100644 Change required in team page/Navbars/Footer/footer.html
diff --git a/Change required in team page/Navbars/Footer/footer.html b/Change required in team page/Navbars/Footer/footer.html
new file mode 100644
index 0000000..e79db1d
--- /dev/null
+++ b/Change required in team page/Navbars/Footer/footer.html
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
+
+
From febadf05df84f59c0ccf53689ef3858f2f48069b Mon Sep 17 00:00:00 2001
From: Anjalikumari148 <55693389+Anjalikumari148@users.noreply.github.com>
Date: Fri, 22 Jan 2021 16:38:20 +0530
Subject: [PATCH 5/7] Add files via upload
---
.../Navbars/Footer/style.css | 70 +++++++++++++++++++
1 file changed, 70 insertions(+)
create mode 100644 Change required in team page/Navbars/Footer/style.css
diff --git a/Change required in team page/Navbars/Footer/style.css b/Change required in team page/Navbars/Footer/style.css
new file mode 100644
index 0000000..eeec15e
--- /dev/null
+++ b/Change required in team page/Navbars/Footer/style.css
@@ -0,0 +1,70 @@
+#footer {
+ position: fixed;
+ left: 0;
+ bottom: 0;
+ width: 100%;
+}
+
+.details {
+ overflow: hidden;
+ padding: 3em 0em;
+ background: #E3F0F7;
+ text-align: center;
+ margin-top: 5em;
+}
+
+#footer #col1,
+#footer #col2,
+#footer #col3 {
+ float: left;
+ width: 320px;
+ padding: 0px 40px 0px 40px;
+}
+
+#footer #icon {
+ display: block;
+ margin-bottom: 1em;
+ font-size: 3em;
+}
+
+.copyright {
+ overflow: hidden;
+ padding: 3em 0em;
+ border-top: 20px solid rgba(255, 255, 255, 0.08);
+ text-align: center;
+ background: teal;
+}
+
+.p {
+ letter-spacing: 1px;
+ font-size: 0.90em;
+ color: rgba(255, 255, 255, 0.6);
+}
+
+.copyright a {
+ text-decoration: none;
+ color: rgba(255, 255, 255, 0.8);
+}
+
+ul.contact {
+ margin: 0;
+ padding: 2em 0em 0em 0em;
+ list-style: none;
+}
+
+ul.contact li {
+ display: inline;
+ margin: 4px;
+}
+
+ul.contact li a {
+ color: #FFF;
+ display: inline-block;
+ background: black;
+ padding: 10px;
+ border-radius: 100%;
+ width: 40px;
+ height: 40px;
+ line-height: 40px;
+ text-align: center;
+}
\ No newline at end of file
From d268c96873a31e7adf8d0ba03768598a022f40ad Mon Sep 17 00:00:00 2001
From: Anjalikumari148 <55693389+Anjalikumari148@users.noreply.github.com>
Date: Fri, 22 Jan 2021 16:39:28 +0530
Subject: [PATCH 6/7] Create cards.hml
---
.../Navbars/cards/cards.hml | 28 +++++++++++++++++++
1 file changed, 28 insertions(+)
create mode 100644 Change required in team page/Navbars/cards/cards.hml
diff --git a/Change required in team page/Navbars/cards/cards.hml b/Change required in team page/Navbars/cards/cards.hml
new file mode 100644
index 0000000..1f2de71
--- /dev/null
+++ b/Change required in team page/Navbars/cards/cards.hml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
From 5e38b1f9f2452c0172f330dd15d59ca363850870 Mon Sep 17 00:00:00 2001
From: Anjalikumari148 <55693389+Anjalikumari148@users.noreply.github.com>
Date: Fri, 22 Jan 2021 16:39:57 +0530
Subject: [PATCH 7/7] Add files via upload
---
.../Navbars/cards/cards.css | 45 +++++++++++++++++++
1 file changed, 45 insertions(+)
create mode 100644 Change required in team page/Navbars/cards/cards.css
diff --git a/Change required in team page/Navbars/cards/cards.css b/Change required in team page/Navbars/cards/cards.css
new file mode 100644
index 0000000..7fcfbb7
--- /dev/null
+++ b/Change required in team page/Navbars/cards/cards.css
@@ -0,0 +1,45 @@
+* {
+ box-sizing: border-box;
+}
+
+body {
+ font-family: Arial, Helvetica, sans-serif;
+}
+
+.column {
+ float: left;
+ width: 25%;
+ padding: 0 10px;
+}
+
+.row {
+ margin: 0 -5px;
+}
+
+.row:after {
+ content: "";
+ display: table;
+ clear: both;
+}
+
+
+/* Style the counter cards */
+
+.card {
+ box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
+ height: 200px;
+ padding: 16px;
+ text-align: center;
+ background-color: #f1f1f1;
+}
+
+
+/* Responsive columns*/
+
+@media screen and (max-width: 600px) {
+ .column {
+ width: 100%;
+ display: block;
+ margin-bottom: 20px;
+ }
+}
\ No newline at end of file