Sha256: 7d23093f6fde5408a0fe388fc6b8c34af10662cc7c955cc31e29e5a1004d6563

Contents?: true

Size: 1.12 KB

Versions: 5

Compression:

Stored size: 1.12 KB

Contents

// Bootstrap does some weird things with body/container-fluid margin/padding
// swapping it around at different sizes. We had trouble working with that,
// so make it more consistent here. 
body {
  background-color: $umlautBackgroundColor;
  padding: 0;
  margin: 0;
}
.container-fluid {
  @include umlaut-container();  
  // max width and center beyond that
  max-width: $umlautContainerMaxWidth;
  margin-left: auto;
  margin-right: auto;
}

.header {
  @include umlaut-container();
  @include clearfix();    
  background-color: $umlautHeaderBackgroundColor;
  border: {
    bottom: 1px solid $umlautHeaderBorderColor;
  }    
  color: $navbarBrandColor;
  h1 {
    //semantically an h1, but let's make it not so big, inspired
    //by twitter's navbar styles, copied
    display: inline;
    float: left;    
    margin: 0 $umlautIndent 0 0;
    padding: 0;    
    font-size: 20px;
    font-weight: 200;
  }
  line-height: 40px;
}


.footer {
  @include umlaut-container();
  @extend .muted;
  margin: {
    top: $baseLineHeight;
  }
  padding: {
    top: 10px;
    bottom: 10px;
  }
  border: {
    top: 1px solid $umlautBorderColor;
  }
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
umlaut-3.3.1 app/assets/stylesheets/umlaut/_layout.scss
umlaut-3.3.0 app/assets/stylesheets/umlaut/_layout.scss
umlaut-3.2.0 app/assets/stylesheets/umlaut/_layout.scss
umlaut-3.1.1 app/assets/stylesheets/umlaut/_layout.scss
umlaut-3.1.0 app/assets/stylesheets/umlaut/_layout.scss