diff --git a/Official_Website/contributor-index.html b/Official_Website/contributor-index.html
index 4b8fcbd5..5c3e85c0 100644
--- a/Official_Website/contributor-index.html
+++ b/Official_Website/contributor-index.html
@@ -97,7 +97,6 @@
HelpOps-Hub
-
Our Team
@@ -108,7 +107,6 @@
Our Team
-
@@ -117,7 +115,6 @@
Our Team
Azfar Alam
DevOps Engineer
-
-
@@ -134,7 +130,6 @@
Azfar Alam
Anurag Pandey
Software Engineer
-
-
diff --git a/Official_Website/contributor-style.css b/Official_Website/contributor-style.css
index 13291a02..ce616da4 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;
+ align-items: center;
+ justify-content: center;
}
/* .intro h1 {
@@ -236,14 +245,27 @@ 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;
+
+ }
+}
+@media only screen and (max-width:520px) {
+ .team-member{
+ display: flex;
+ flex-direction: column !important;
+ }
+}
.team-member {
display: flex;
justify-content: space-between;
@@ -254,6 +276,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 b1670ab6..988b1dc6 100644
--- a/Official_Website/style.css
+++ b/Official_Website/style.css
@@ -7,6 +7,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