Files
xeorl/assets/css/footer.css
2024-08-29 19:05:53 +05:30

49 lines
965 B
CSS

footer {
background-color: #F8F8FD;
padding: 33px 20px; /* Increased padding for a larger footer */
border: none;
width: 100%;
box-sizing: border-box;
}
.footer-container {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1120px;
font-size: 12px; /* Slightly increased font size */
margin: 0 auto;
width: 100%;
box-sizing: border-box;
flex-wrap: wrap;
}
.footer-container p {
margin: 0;
padding-bottom: 20px; /* Increased padding for spacing */
}
.footer-links {
margin-top: 15px; /* Increased margin for better spacing */
}
.footer-links a {
margin: 0 12px; /* Slightly increased margin between links */
text-decoration: none;
color: #A2ABB8;
font-weight: 550;
font-size: 10px;
}
.footer-links a:hover {
text-decoration: underline;
}
.footer-img {
width: 20px;
margin: 0;
position: relative;
top: 2px;
left: -5px;
}