Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix:Contact page not looking good #476

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion Css-files/content.css
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,16 @@ body {
/* animation: bounce 0.5s; */
}
input[type="submit"] {
background-color: brown;
display: flex;
justify-content: center;
align-items: center;
background-color: white !important;
color: brown !important ;
border: 3px solid rgb(255, 255, 255);
padding: 20px 10px !important;
margin: 0px 0px 20px 200px ;
border-radius: 10px;
width: auto;
/* transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease; */
}

Expand Down Expand Up @@ -540,6 +545,7 @@ td{
.form-control {
border-radius: 15px; /* Adjust the border radius */
padding-left: 40px; /* Space for the icon */
width: 400px !important;
}

.input-icon {
Expand Down Expand Up @@ -628,3 +634,23 @@ td{
padding: 5px 8px;
font-size: 12px;
}


.container{
display: flex;
/* justify-content: center; */
flex-direction: column;
align-items: center;
padding:0px 100px !important;
}

#mainbox{
display: flex;
justify-content: center;
align-items: center;
}

iframe{
margin: 0px 75px;
}

13 changes: 12 additions & 1 deletion Html-files/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,16 @@
border: none;
outline: none;
background-color: transparent;

color: rgb(17, 17, 17);

cursor: pointer;
padding: 15px;
border-radius: 4px;
}
#sr:hover {
background-color: transparent;
color: black;
color: #C4D7FF;
border-radius: 100px;
}
.circle{
Expand Down Expand Up @@ -757,6 +759,15 @@ <h3 class="f-title f_600 t_color f_size_18">Follow Us</h3>
<div class="footer_bg_two"></div>
</div>
</div>
<div>
<button id="sr" style="z-index: 1000; display: block;">
<div class="circle1">
<svg id="back-to-top" xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="currentColor" class="bi bi-arrow-up-circle-fill" viewBox="0 0 16 16">
<path d="M16 8A8 8 0 1 0 0 8a8 8 0 0 0 16 0m-7.5 3.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707z"></path>
</svg>
</div>
</button>
</div>

<!-- Footer Bottom -->
<div class="footer_bottom">
Expand Down
3 changes: 2 additions & 1 deletion Html-files/cart.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
#sr {

display: none;
position: fixed;
bottom: 70px;
Expand All @@ -129,7 +130,7 @@
}
#sr:hover {
background-color: transparent;
color: black;
color: #C4D7FF;
border-radius: 100px;
}

Expand Down
Loading