mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
38 lines
706 B
SCSS
38 lines
706 B
SCSS
$footer-bg: $gray-100;
|
|
$footer-border: 1px solid darken($footer-bg, 10%);
|
|
$footer-padding: $spacer * 1.5;
|
|
$footer-logo-height: 55px;
|
|
|
|
.footer {
|
|
background-color: $footer-bg;
|
|
border-top: $footer-border;
|
|
text-align: center;
|
|
padding: $footer-padding;
|
|
padding-bottom: $spacer;
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
img {
|
|
height: $footer-logo-height;
|
|
}
|
|
|
|
ul li {
|
|
padding-top: $spacer * 0.5;
|
|
|
|
a {
|
|
color: inherit
|
|
}
|
|
|
|
&:not(:last-child) {
|
|
&:after {
|
|
content: '';
|
|
border-right: 1px map-get($theme-colors, secondary) solid;
|
|
margin: 0 $spacer/2;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|