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

address div is now align properly #2985

Merged
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
89 changes: 22 additions & 67 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3245,77 +3245,32 @@ <h3 style="text-align: left; color: #A30F17;">Get in touch</h3>
</li>
</div>
</div>
</div>
<style>
.flexi {
display: flex;
justify-content: flex-start;
align-items: center;
margin-left: -100px; /* Shift both sections further left */
}

.contact {
flex: 0.75;
margin-right:-60px;
margin-top: 0;
margin-bottom: 17px;
}
.address-side {
flex: 0.25; /* Reduced flex value to make the address section narrower */
margin-left: -150px; /* Keep the left shift to bring it closer to the center */
margin-top: 0;
margin-right: 100px;
margin-bottom: 17px;


<style>
.cardi {
position: relative;
width: 400px;
height: auto;
cursor: move;
}


h1.ctc, p.p {
margin-bottom: 0;
}

.contact-container, .address-side {
margin-top: 0;
}

.contact-form {
display: flex;
flex-direction: column;
}

.contact-form input, .contact-form textarea {
margin-bottom: 20px;
padding: 10px;
font-size: 14px;
}

.contact-form button {
padding: 10px;
background-color: palevioletred;
color: #fff;
border: none;
cursor: pointer;
}

.image-fader img {
width: 100px;
margin: 5px;
}

.white-border-card {
border: 1px solid #fff;
.contact-card {
position: absolute;
top: 7%;
left: 0;
width: 100%;
padding: 20px;
}

.card-title {
font-weight: bold;
}
border-radius: 10px;
border: 1px solid #ddd;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
z-index: 1000;
transition: transform 0.2s ease-in-out;
}

.card-link {
color:palevioletred;
text-decoration: none;
}
</style>


</style>

<style>
.map-container {
position: relative;
Expand Down
Loading