mirror of
https://github.com/clockworkpi/wiki.clockworkpi.com.git
synced 2025-12-12 08:48:51 +01:00
30 lines
533 B
SCSS
30 lines
533 B
SCSS
body > footer {
|
|
background: #ffffff;
|
|
grid-column: 1 / 3;
|
|
grid-row: 2;
|
|
}
|
|
footer {
|
|
display: grid;
|
|
grid-template-columns: 20% 60% 20%;
|
|
|
|
#footer-center {
|
|
align-self: center;
|
|
justify-self: center;
|
|
text-align: center;
|
|
font-size: 80%;
|
|
}
|
|
|
|
#footer-right {
|
|
align-self: center;
|
|
justify-self: end;
|
|
|
|
a {
|
|
background-image: url(https://creativecommons.org/images/public/somerights20.png);
|
|
width: 88px;
|
|
height: 31px;
|
|
display: block;
|
|
background-repeat: no-repeat;
|
|
}
|
|
}
|
|
}
|