mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2026-04-27 15:50:11 +00:00
fc9c7f63cf
* BETTERZON-31, dependencies. * BETTERZON-31: Fixing dependencies * BETTERZON-31, BETTERZON-50 info popover and footer had been changed. * BETTERZON-74 simple top-bar has been created. * WIP: creating footer using grid. * BETTERZON-78 adding bottom bar and top bar * Adding cookieconsent as dependency again since it was removed by a merge * Adding cookieconsent as dependency again since it was removed by a merge * Apply suggestions from code review Switching from single to double quotes * BETTERZON-78 - grid added, structured as in Adobe XD mockup Co-authored-by: Patrick Müller <patrick@mueller-patrick.tech> Co-authored-by: Patrick <50352812+Mueller-Patrick@users.noreply.github.com>
33 lines
428 B
CSS
33 lines
428 B
CSS
.footer {
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background-color: #1976d2;
|
|
color: white;
|
|
}
|
|
|
|
.icon-3d {
|
|
padding: 10px;
|
|
color: #fff;
|
|
}
|
|
|
|
#footer-icons {
|
|
text-align: center;
|
|
}
|
|
|
|
#imprintSection {
|
|
position: fixed;
|
|
right: 1em;
|
|
bottom: 1em;
|
|
width: 100%;
|
|
text-align: right;
|
|
padding-right: 1em;
|
|
}
|
|
|
|
#imprintSection a {
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|