diff --git a/Official_Website/contributor-index.html b/Official_Website/contributor-index.html
index b77170ec..0f7098af 100644
--- a/Official_Website/contributor-index.html
+++ b/Official_Website/contributor-index.html
@@ -90,7 +90,6 @@
HelpOps-Hub
-
Our Team
@@ -101,7 +100,6 @@
Our Team
-
@@ -110,7 +108,6 @@
Our Team
Azfar Alam
DevOps Engineer
-
-
@@ -127,7 +123,6 @@
Azfar Alam
Anurag Pandey
Software Engineer
-
-
diff --git a/Official_Website/contributor-style.css b/Official_Website/contributor-style.css
index 13291a02..ca12e03d 100644
--- a/Official_Website/contributor-style.css
+++ b/Official_Website/contributor-style.css
@@ -214,15 +214,24 @@ width: 40px;
.container {
display: flex;
width: 100%;
+ height: auto;
+ flex-direction: column;
}
.main-content {
flex: 1;
padding: 20px;
+ height: auto;
}
.intro {
- margin:24px;
+ width: 100%;
+ display: flex;
+ flex-direction: column;
+ gap: 20px;
+
+ margin: 30px;
+ justify-content: center;
}
/* .intro h1 {
@@ -236,14 +245,33 @@ width: 40px;
} */
#team-grid {
- margin-left: 2rem;
- margin-right: 2rem;
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
- gap: 5rem;
- height: 300px;
+
+ display: flex;
+ flex-direction: row;
+justify-content: center;
+ min-height: 300px;
+ height: auto;
+ gap: 30px;
+}
+
+@media only screen and (max-width:944px) {
+ #team-grid{
+ flex-direction: column;
+
+ }
+ .intro{
+ align-items: center;
+ }
+}
+@media only screen and (max-width:520px) {
+ .team-member{
+ display: flex;
+ flex-direction: column !important;
+ }
+ .intro{
+ align-items: center;
+ }
}
-
.team-member {
display: flex;
justify-content: space-between;
@@ -254,6 +282,7 @@ width: 40px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
padding: 20px;
/* background-color: gray; */
+ gap: 10px;
margin-left: 20px;
background-position: center center;
background-size: cover;
diff --git a/Official_Website/style.css b/Official_Website/style.css
index 1b667153..3d9b3cb0 100644
--- a/Official_Website/style.css
+++ b/Official_Website/style.css
@@ -5,6 +5,20 @@ p {
margin: 0;
padding: 0;
}
+.team-grid{
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap !important;
+}
+.img-div{
+ width: 40%;
+
+}
+.team-member{
+ display: flex;
+ flex-direction: row;
+position: relative;
+}
/* style search container */
.search-container {
display: flex;
Azfar Alam