theshell.ch/site/_sass/_footer.scss
terehm 224b88c682 css-team: fix bug: styles from header/content interfering with footer.
git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@26 a672b425-5310-4d7a-af5c-997e18724b81
2018-11-02 08:52:21 +00:00

38 lines
610 B
SCSS

/* Author: Marco Tereh */
/* this file only concerns elements which are children of the <footer> */
footer{
background-color: grey; /* TODO: replace placeholder color and add text color */
overflow: auto;
text-align: left;
}
footer > div {
float: left;
margin: 10px;
width: CALC(33% - 20px);
}
footer .head {
text-decoration: underline;
}
footer .child {
margin-left: 5px;
}
footer > div:nth-child(2){
text-align: center;
.child{
text-align: left;
width: fit-content;
margin: auto;
}
}
footer div img {
height: 50px;
width: 50px;
margin-left: CALC(100% - 50px);
}