react-hartan
Version:
A simple components library for React
43 lines (37 loc) • 722 B
CSS
/* Footer Style */
/* footer section */
footer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2rem;
padding: 2rem;
background-color: #f5f5f5;
box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
/* Links container */
.links {
display: flex;
gap: 7rem;
}
.links div {
display: flex;
flex-direction: column;
gap: 1rem;
}
.linksdata li {
list-style: none;
cursor: pointer;
font-size: 1.24rem;
text-decoration: none;
color: black;
}
.linksdata li a {
text-decoration: none;
color: #000000;
}
/* copyright container */
.copyright {
font-size: 1.4rem;
}