maggicl
e6179c1569
git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@28 a672b425-5310-4d7a-af5c-997e18724b81
39 lines
579 B
SCSS
39 lines
579 B
SCSS
/**
|
|
* Author: Marco Tereh and Claudio Maggioni
|
|
* this file only concerns elements which are children of the <footer>
|
|
*/
|
|
|
|
footer {
|
|
background-color: #333;
|
|
color: white;
|
|
|
|
.footer.container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding: 1em;
|
|
}
|
|
|
|
section {
|
|
flex-grow: 1;
|
|
padding: .5rem;
|
|
|
|
h3 {
|
|
text-transform: uppercase;
|
|
padding-bottom: .5em;
|
|
}
|
|
}
|
|
|
|
.copyright {
|
|
background: #111;
|
|
width: 100%;
|
|
|
|
.container {
|
|
padding-top: 1em;
|
|
padding-bottom: 1em;
|
|
}
|
|
}
|
|
|
|
section.author {
|
|
width: 30%;
|
|
}
|
|
}
|