2018-11-02 15:00:59 +00:00
|
|
|
/**
|
|
|
|
* Author: Marco Tereh and Claudio Maggioni
|
|
|
|
* this file only concerns elements which are children of the <footer>
|
|
|
|
*/
|
2018-10-31 17:16:47 +00:00
|
|
|
|
2018-11-02 15:00:59 +00:00
|
|
|
footer {
|
|
|
|
background-color: #333;
|
|
|
|
color: white;
|
2018-10-31 17:16:47 +00:00
|
|
|
|
2018-11-02 15:00:59 +00:00
|
|
|
.footer.container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
padding: 1em;
|
|
|
|
}
|
2018-10-31 17:16:47 +00:00
|
|
|
|
2018-11-02 15:00:59 +00:00
|
|
|
section {
|
|
|
|
flex-grow: 1;
|
|
|
|
padding: .5rem;
|
2018-10-31 17:16:47 +00:00
|
|
|
|
2018-11-02 15:00:59 +00:00
|
|
|
h3 {
|
|
|
|
text-transform: uppercase;
|
|
|
|
padding-bottom: .5em;
|
|
|
|
}
|
|
|
|
}
|
2018-10-31 17:16:47 +00:00
|
|
|
|
2018-11-02 15:00:59 +00:00
|
|
|
.copyright {
|
|
|
|
background: #111;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.container {
|
|
|
|
padding-top: 1em;
|
|
|
|
padding-bottom: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
section.author {
|
|
|
|
width: 30%;
|
2018-10-31 17:16:47 +00:00
|
|
|
}
|
|
|
|
}
|