github.com/turtlemonvh/terraform@v0.6.9-0.20151204001754-8e40b6b855e8/website/source/assets/stylesheets/_footer.scss (about)

     1  body.page-sub{
     2    #footer{
     3      padding: 40px 0;
     4      margin-top: 0;
     5    }
     6  }
     7  
     8  #footer{
     9    background-color: white;
    10    padding: 150px 0 80px;
    11    margin-top: -40px;
    12  
    13    &.white{
    14      background-color: $black;
    15      .footer-links{
    16        li > a {
    17          @include project-footer-a-subpage-style();
    18        }
    19      }
    20    }
    21  
    22    .footer-links{
    23      li > a {
    24        @include project-footer-a-style();
    25      }
    26    }
    27  
    28    .hashicorp-project{
    29      margin-top: 24px;
    30    }
    31  
    32    .pull-right{
    33      padding-right: 15px;
    34    }
    35  }
    36  
    37  .edit-page-link{
    38    position: absolute;
    39    top: -70px;
    40    right: 30px;
    41    z-index: 9999;
    42  
    43    a{
    44      text-transform: uppercase;
    45      color: $black;
    46      font-size: 13px;
    47    }
    48  }
    49  
    50  @media (max-width: 992px) {
    51    .footer-links {
    52      display: block;
    53      text-align: center;
    54  
    55      ul{
    56        display: inline-block;;
    57        float: none !important;
    58      }
    59  
    60      .footer-hashi{
    61        display: block;
    62        float: none !important;
    63      }
    64    }
    65  }
    66  
    67  @media (max-width: 414px) {
    68    #footer{
    69      ul{
    70        display: block;
    71        li{
    72          display: block;
    73          float: none;
    74        }
    75  
    76        &.external-links{
    77          li{
    78            svg{
    79              position: relative;
    80              left: 0;
    81              top: 2px;
    82              margin-top: 0;
    83              margin-right: 4px;
    84            }
    85          }
    86        }
    87      }
    88    }
    89  }