github.com/kaixiang/packer@v0.5.2-0.20140114230416-1f5786b0d7f1/website/source/stylesheets/_components.scss (about)

     1  header .header {
     2      height: 200px;
     3      background: #000000;
     4  
     5      h1 {
     6          margin-bottom: -8px;
     7          margin-top: 60px;
     8          text-transform: uppercase;
     9      }
    10  
    11      span {
    12          font-size: 20px;
    13      }
    14  }
    15  
    16  .hero {
    17      height: $hero-height;
    18      background: #000000 url(/images/hero_image.jpg) no-repeat 35px -40px;
    19      background-size: 960px 467px;
    20  
    21      h2 {
    22          margin-top: 70px;
    23      }
    24  }
    25  
    26  .belt {
    27      &.download {
    28          background-color: $white;
    29          @extend .padded-sm;
    30      }
    31  
    32      .download-container {
    33          background: url(/images/down_arrow.png) no-repeat top left;
    34          display: inline-block;
    35          min-height: 73px;
    36          margin: 0 auto;
    37          padding-left: 100px;
    38      }
    39  
    40      .download-row {
    41          text-align: center;
    42  
    43          .small {
    44              text-align: left;
    45          }
    46      }
    47  
    48      h2 {
    49          font-family: $serif;
    50          font-size: 44px;
    51          color: #7bc6b1;
    52          margin: 0px;
    53          padding: 0px;
    54          padding-top: 7px;
    55          padding-bottom: 3px;
    56          line-height: 1.0;
    57          white-space: nowrap;
    58  
    59          &:hover {
    60              color: $dark-background;
    61          }
    62      }
    63  
    64      span {
    65          color: $gray-dark;
    66      }
    67  }
    68  
    69  .downloads {
    70      margin-top: 20px;
    71  
    72      .description {
    73          margin-bottom: 20px;
    74      }
    75  
    76      .download {
    77          border-bottom: 1px solid #b2b2b2;
    78          padding-bottom: 15px;
    79          margin-bottom: 15px;
    80  
    81          .details {
    82              padding-left: 95px;
    83  
    84              li {
    85                  display: inline-block;
    86  
    87                  &:after {
    88                      content: " | ";
    89                  }
    90  
    91                  &:last-child:after {
    92                      content: "";
    93                  }
    94              }
    95  
    96              a {
    97                  font-size: 22px;
    98                  color: darken($green, 15%);
    99  
   100                  &:hover {
   101                      color: darken($green, 30%);
   102                  }
   103  
   104                  &:active {
   105                      color: darken($green, 50%);
   106                  }
   107              }
   108          }
   109  
   110          .icon {
   111              img {
   112                  width: 75px;
   113              }
   114          }
   115  
   116          .os-name {
   117              font-size: 40px;
   118              margin-bottom: -3px;
   119          }
   120      }
   121  
   122      .poweredby {
   123          margin-top: 20px;
   124          margin-bottom: 20px;
   125  
   126          img {
   127              display: block;
   128              margin: 0 auto;
   129              width: 122px;
   130          }
   131      }
   132  }
   133  
   134  .marketting {
   135      p {
   136          padding-left: 10px;
   137          padding-right: 10px;
   138          text-align: justify;
   139      }
   140  }
   141  
   142  .docs-wrapper {
   143      clear: right;
   144  
   145      .docs-body {
   146          float: left;
   147          width: 70%;
   148          max-width: 760px;
   149          display: block;
   150          @extend .white-background;
   151  
   152          .docs-content {
   153              padding: $docs-top-margin 80px;
   154              display: block;
   155  
   156              code {
   157                  background-color: #000;
   158                  border: 0;
   159                  color: #b1d631;
   160                  font-size: 14px;
   161              }
   162  
   163              a {
   164                  color: darken($green, 15%);
   165  
   166                  &:hover {
   167                      color: darken($green, 30%);
   168                  }
   169  
   170                  &:active {
   171                      color: darken($green, 50%);
   172                  }
   173              }
   174  
   175              ul,
   176              ol {
   177                  list-style-position: inside;
   178                  margin-top: $baseline;
   179                  margin-left: 20px;
   180                  margin-right: 20px;
   181  
   182                  li {
   183                      font-family: $serif;
   184                      font-size: 17px;
   185                      line-height: (30/17) !important;
   186                      margin-bottom: $baseline;
   187                  }
   188              }
   189  
   190              ul {
   191                  list-style-type: circle;
   192              }
   193  
   194              ol {
   195                  list-style-type: decimal;
   196              }
   197  
   198              div.alert {
   199                  font-family: $serif;
   200                  font-size: 17px;
   201                  line-height: 1.5;
   202                  letter-spacing: 1px;
   203                  margin-left: -80px;
   204                  margin-right: -80px;
   205                  padding-top: 15px;
   206                  padding-bottom: 15px;
   207                  padding-left: 80px;
   208                  padding-right: 80px;
   209                  border-radius: 0;
   210              }
   211  
   212              pre {
   213                  border: 0;
   214                  font-size: 14px;
   215                  margin-left: -80px;
   216                  margin-right: -80px;
   217                  padding-top: 40px;
   218                  padding-bottom: 40px;
   219                  padding-left: 80px;
   220                  padding-right: 80px;
   221                  border-radius: 0;
   222              }
   223          }
   224  
   225          .docs-background {
   226              @extend .white-background;
   227              height: 100%;
   228              width: 70%;
   229              max-width: 760px;
   230              position: fixed;
   231              top: 0;
   232              left: $sidebar-width;
   233              z-index: -9999;
   234          }
   235  
   236          section {
   237              margin-top: $docs-top-margin;
   238          }
   239  
   240          h1 {
   241              font-size: 40px;
   242              line-height: (25/20);
   243              text-transform: uppercase;
   244          }
   245  
   246          h2 {
   247              margin-top: $baseline * 2;
   248              text-transform: capitalize;
   249          }
   250  
   251          h3 {
   252              margin-top: $baseline;
   253              text-transform: capitalize;
   254              font-size: 26px;
   255          }
   256      }
   257  }
   258  
   259  .pagination {
   260      $border: 1px solid $gray-mid;
   261      height: $nav-height;
   262      border-top: $border;
   263      font-size: 20px;
   264      margin: 0px;
   265  
   266      h4 {
   267          display: inline-block;
   268          margin-top: ($baseline * 1.7);
   269          margin-left: $baseline;
   270  
   271          @include respond-to(mobile) {
   272              margin-top: 10px;
   273          }
   274      }
   275  
   276      span {
   277  
   278          @include respond-to(mobile) {
   279              display: block;
   280          }
   281      }
   282  
   283      .previous-section,
   284      .next-section {
   285          height: $nav-height;
   286          display: block;
   287  
   288          &:hover {
   289              background-color: transparentize($gray-light, .7);
   290          }
   291      }
   292  
   293      .previous-section {
   294          width: $nav-height;
   295          border-right: $border;
   296          float: left;
   297          background: $white url(/images/arrow-left.png) no-repeat center center;
   298          @include respond-to(mobile) {
   299              width: 50%;
   300              background-position: left center;
   301          }
   302      }
   303  
   304      .next-section {
   305          background: $white url(/images/arrow-right.png) no-repeat center right;
   306      }
   307  }
   308  
   309  .people {
   310      margin-top: 30px;
   311  
   312      .person {
   313          margin-bottom: 30px;
   314  
   315          h3 {
   316              text-transform: none;
   317          }
   318  
   319          .bio {
   320              padding-left: 150px;
   321          }
   322      }
   323  }