mirror of
https://github.com/seigler/dash-website
synced 2025-07-26 23:06:09 +00:00
44 lines
501 B
SCSS
44 lines
501 B
SCSS
/*
|
|
footer
|
|
nav.content
|
|
section x5
|
|
<text>
|
|
ul
|
|
li
|
|
.footer--menu.content
|
|
.footer--languagePicker
|
|
a x3
|
|
.footer--legal
|
|
.content
|
|
.footer--copyright
|
|
a
|
|
*/
|
|
|
|
footer {
|
|
background-color: #333333;
|
|
color: #717171;
|
|
padding-top: 4em;
|
|
|
|
a {
|
|
color: $white;
|
|
}
|
|
|
|
> nav {
|
|
display: table;
|
|
table-layout: fixed;
|
|
> section {
|
|
display: table-cell;
|
|
> ul {
|
|
margin: 1em 0 0;
|
|
padding: 0;
|
|
> li {
|
|
list-style: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.footer--social {
|
|
column-count: 2;
|
|
}
|