36 lines
542 B
CSS
36 lines
542 B
CSS
.footer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0.5rem;
|
|
margin-top: 0.5rem;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 1rem auto auto;
|
|
}
|
|
|
|
.footerline {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 2px;
|
|
background-color: #8422e8;
|
|
}
|
|
|
|
.footertxt a {
|
|
color: grey;
|
|
text-decoration: none;
|
|
font-size: 0.7rem;
|
|
}
|
|
|
|
.footertxt a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.footertxt {
|
|
color: grey;
|
|
font-size: 0.8rem;
|
|
}
|