32 lines
512 B
SCSS
32 lines
512 B
SCSS
#footer {
|
|
display: block;
|
|
background: $gray-200;
|
|
margin-top: auto !important;
|
|
padding-top: $spacer;
|
|
padding-bottom: $spacer * 3;
|
|
font-size: 0.75rem; // $font-size-xs;
|
|
|
|
a {
|
|
color: $gray-600;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
color: $gray-800;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: $spacer 0;
|
|
color: $gray-600;
|
|
|
|
li#footer-poweredbyico {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
}
|