github.com/phobos182/packer@v0.2.3-0.20130819023704-c84d2aeffc68/website/source/stylesheets/_sidebar.scss (about)

     1  .sidebar {
     2      $border: 1px solid $gray-dark;
     3      font-size: 16px;
     4      font-family: $mono;
     5      color: $gray-light;
     6      width: $sidebar-width;
     7      float: left;
     8      background-color: $sidebar-background-color;
     9      height: 100%;
    10  
    11      h2 {
    12          color: $green;
    13          text-transform: uppercase;
    14          padding: $docs-top-margin 20px 0;
    15      }
    16  
    17      h4 {
    18          color: $white;
    19          text-transform: uppercase;
    20          margin-bottom: -10px;
    21      }
    22  
    23      ul {
    24          @extend .padded-sm;
    25  
    26          li {
    27              border-bottom: $border;
    28              padding: 15px 0;
    29              text-align: left;
    30          }
    31  
    32          li > * {
    33              padding: auto 20px;
    34              margin-left: 20px;
    35              display: block;
    36              width: 100%;
    37          }
    38      }
    39  
    40      .sidebar-background {
    41          background-color: $sidebar-background-color;
    42          height: 100%;
    43          width: $sidebar-width;
    44          position: fixed;
    45          top: 0;
    46          left: 0;
    47          z-index: -9999;
    48      }
    49  }