mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-18 14:59:19 +00:00
25 lines
380 B
CSS
25 lines
380 B
CSS
#imprintSection {
|
|
right: 1em;
|
|
bottom: 1em;
|
|
width: 100%;
|
|
text-align: right;
|
|
padding-right: 1em;
|
|
grid-area: right;
|
|
}
|
|
|
|
#imprintSection a {
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#copyright {
|
|
display: grid;
|
|
grid-template-areas:
|
|
'left center right';
|
|
grid-template-columns: 30% 40% 30%;
|
|
}
|
|
|
|
#copyright-text {
|
|
grid-area: center;
|
|
}
|