1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /* Site footer */
- #colophon {
- .widget-area {
- margin: calc(2 * #{$size__spacing-unit}) $size__spacing-unit;
- @include media(tablet) {
- margin: calc(3 * #{$size__spacing-unit}) auto;
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- @include media(desktop) {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- .widget-column {
- display: flex;
- flex-wrap: wrap;
- .widget {
- width: 100%;
- }
- }
- .site-info {
- margin: calc(2 * #{$size__spacing-unit}) $size__spacing-unit;
- @include media(tablet) {
- margin: calc(3 * #{$size__spacing-unit}) $size__site-margins;
- }
- }
- .site-info {
- color: $color__text-light;
- text-align: center;
- a {
- color: inherit;
- &:hover {
- text-decoration: none;
- color: $color__link;
- }
- }
- .imprint,
- .privacy-policy-link {
- margin-right: $size__spacing-unit;
- }
- }
- }
|