mirror of
https://github.com/clockworkpi/wiki.clockworkpi.com.git
synced 2025-12-12 16:58:50 +01:00
34 lines
504 B
SCSS
34 lines
504 B
SCSS
body > footer {
|
|
background: #ffffff;
|
|
grid-column: 1 / 3;
|
|
grid-row: 2;
|
|
}
|
|
footer {
|
|
display: grid;
|
|
grid-template-columns: 20% 60% 20%;
|
|
font-size: 80%;
|
|
|
|
* {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
a {
|
|
display: inline-block;
|
|
background-repeat: no-repeat;
|
|
color: #424242
|
|
}
|
|
|
|
#footer-center {
|
|
align-self: center;
|
|
justify-self: center;
|
|
text-align: center;
|
|
}
|
|
|
|
#footer-right {
|
|
align-self: center;
|
|
justify-self: end;
|
|
padding-right: 3px;
|
|
font-size: 80%;
|
|
}
|
|
}
|