aa13540d89
git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@19 a672b425-5310-4d7a-af5c-997e18724b81
37 lines
No EOL
590 B
SCSS
37 lines
No EOL
590 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;
|
|
}
|
|
|
|
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);
|
|
} |