23 lines
331 B
CSS
23 lines
331 B
CSS
.footer {
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
padding: 0.5rem 0;
|
|
background-color: #14284c;
|
|
}
|
|
|
|
.footerContent {
|
|
margin: 0 auto;
|
|
max-width: 1000px;
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
a.footerItem {
|
|
padding: 0.5rem 1rem;
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|