liquid_feedback_frontend

diff style/mdl/footer/_mini_footer.scss @ 1309:32cc544d5a5b

Cumulative patch for upcoming frontend version 4
author bsw/jbe
date Sun Jul 15 14:07:29 2018 +0200 (2018-07-15)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/style/mdl/footer/_mini_footer.scss	Sun Jul 15 14:07:29 2018 +0200
     1.3 @@ -0,0 +1,88 @@
     1.4 +/**
     1.5 + * Copyright 2015 Google Inc. All Rights Reserved.
     1.6 + *
     1.7 + * Licensed under the Apache License, Version 2.0 (the "License");
     1.8 + * you may not use this file except in compliance with the License.
     1.9 + * You may obtain a copy of the License at
    1.10 + *
    1.11 + *      http://www.apache.org/licenses/LICENSE-2.0
    1.12 + *
    1.13 + * Unless required by applicable law or agreed to in writing, software
    1.14 + * distributed under the License is distributed on an "AS IS" BASIS,
    1.15 + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    1.16 + * See the License for the specific language governing permissions and
    1.17 + * limitations under the License.
    1.18 + */
    1.19 +
    1.20 +@import "../variables";
    1.21 +
    1.22 +.mdl-mini-footer {
    1.23 +  display: flex;
    1.24 +  flex-flow: row wrap;
    1.25 +  justify-content: space-between;
    1.26 +
    1.27 +  padding: ($padding * 2) $padding;
    1.28 +
    1.29 +  color: $footer-color;
    1.30 +  background-color: $footer-bg-color;
    1.31 +
    1.32 +  &:after {
    1.33 +    content: '';
    1.34 +    display: block;
    1.35 +  }
    1.36 +
    1.37 +  & .mdl-logo {
    1.38 +    line-height: $footer-btn-size;
    1.39 +  }
    1.40 +}
    1.41 +
    1.42 +.mdl-mini-footer--link-list,
    1.43 +.mdl-mini-footer__link-list {
    1.44 +  display: flex;
    1.45 +  flex-flow: row nowrap;
    1.46 +
    1.47 +  list-style: none;
    1.48 +
    1.49 +  margin: 0;
    1.50 +  padding: 0;
    1.51 +
    1.52 +  & li {
    1.53 +    margin-bottom: 0;
    1.54 +    margin-right: $padding;
    1.55 +
    1.56 +    @media screen and (min-width: 760px) {
    1.57 +      line-height: $footer-btn-size;
    1.58 +    }
    1.59 +  }
    1.60 +
    1.61 +  & a {
    1.62 +    color: inherit;
    1.63 +    text-decoration: none;
    1.64 +    white-space: nowrap;
    1.65 +  }
    1.66 +}
    1.67 +
    1.68 +.mdl-mini-footer--left-section,
    1.69 +.mdl-mini-footer__left-section {
    1.70 +  display: inline-block;
    1.71 +  order: 0;
    1.72 +}
    1.73 +
    1.74 +.mdl-mini-footer--right-section,
    1.75 +.mdl-mini-footer__right-section {
    1.76 +  display: inline-block;
    1.77 +  order: 1;
    1.78 +}
    1.79 +
    1.80 +.mdl-mini-footer--social-btn,
    1.81 +.mdl-mini-footer__social-btn {
    1.82 +  width: $footer-btn-size;
    1.83 +  height: $footer-btn-size;
    1.84 +
    1.85 +  padding: 0;
    1.86 +  margin: 0;
    1.87 +
    1.88 +  background-color: $footer-button-fill-color;
    1.89 +
    1.90 +  border: none;
    1.91 +}

Impressum / About Us