Skip to content

Commit

Permalink
Merge pull request #328 from gurramkarthiknetha/issue327
Browse files Browse the repository at this point in the history
issue327fixed
  • Loading branch information
swaraj-das authored Oct 13, 2024
2 parents 8668b8e + 29a58e4 commit 00e3bd3
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,10 @@
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Add shadow */
}
.card-header {
background-color: #333;
color: #fff;
padding: 10px;
margin-bottom: 15px;
text-align: center;
border-bottom: 1px solid #ddd;
border-radius: 6px;
align-items: center;
}
Expand Down Expand Up @@ -113,6 +111,7 @@ button[type="submit"]:hover {
}

html {
overflow-x: hidden;
overflow-y: scroll;
scroll-behavior: smooth;
}
Expand Down Expand Up @@ -546,6 +545,7 @@ button:hover img {
.footer {
background: #303036;
color: #d3d3d3;
width: 100%;
padding: 50px 0 0;
font-family: 'Arial', sans-serif;
}
Expand Down Expand Up @@ -924,6 +924,7 @@ button:hover img {
.card-body {
display: flex;
width: 90%;
overflow-x: hidden;
margin: 20px auto;
padding: 20px;
justify-content: space-between; /* Form on the right and image on the left */
Expand Down Expand Up @@ -971,8 +972,9 @@ button:hover img {
}

.footer-bottom {
max-width: fit-content;
max-width: 100vw;
}

}


Expand Down Expand Up @@ -1248,18 +1250,17 @@ button:hover img {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: #ffffff;
background-color: rgb(71,61,61);
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
box-shadow: 2 10px 8px rgba(255, 254, 254, 0.1);
}

.faq-title {
text-align: center;
font-size: 1.8em;
color: #333;
color: #ffffff;
margin-bottom: 20px;
color: #ff6b6b;
}

.faq {
Expand Down Expand Up @@ -1323,15 +1324,15 @@ button:hover img {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: white;
background-color: rgb(71,61,61);
}

/* Review Section Container */
.reviews-container {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: #ffffff;
background-color:rgb(71,61,61);
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
Expand All @@ -1341,7 +1342,7 @@ button:hover img {
.reviews-title {
text-align: center;
font-size: 1.8em;
color: #ff6b6b;
color: #ffffff;
margin-bottom: 20px;
}

Expand Down Expand Up @@ -1383,3 +1384,8 @@ button:hover img {
line-height: 1.5; /* Slightly tighter line height */
}

@media only screen and (max-width: 700px) {
.footer-bottom{
width: 1000vw !important;
}
}

0 comments on commit 00e3bd3

Please sign in to comment.