Sha256: 92f4cfff01e286119c2b95e8a103d7a88dc2f868df8cce44abcde971e7caf593

Contents?: true

Size: 1.74 KB

Versions: 2

Compression:

Stored size: 1.74 KB

Contents

* {
  &,
  &:before,
  &:after {
    box-sizing: border-box;
  }
}

html,
body {
  height: 100%;
  background: $dark-grey;
  color: white;
}

body {
  padding: 0;
  margin: 0;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

button {
  cursor: pointer;
}

.glyptotheque {
  position: relative;
  padding: 40px;
  min-height: 100%;
  overflow: hidden;
  background: white;
  color: #343434;
  box-shadow: -1px 0 0 rgba(black, .1);
}

.glypto-section {
  margin: 0 -10px 40px;
  padding: 0 10px 40px;

  &:after {
    @include position(absolute, null 0 null 0);
    content: '';
    background: lighten($dark-grey, 55);
    height: 3px;
    margin-top: 39px;
  }

  &:last-child {
    margin-bottom: 0;

    &:after {
      content: none;
    }
  }
}

.glyptotheque,
.glypto-section {
  > h2,
  > h3,
  > h4 {
    margin: 1.1em 0 .5em;
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }
}

.glypto-title {
  font-size: 48px;
  font-family: 'Helvetica Neue';
  margin: 0 0 40px;
  letter-spacing: -.04em;

  a {
    color: #0070a8;
    text-decoration: none;

    &:hover {
      color: $hover-orange;
    }
  }
}

.glypto-header {
  margin: -40px -40px 40px;
  padding: 40px;
  background: #ddd;
  background: linear-gradient(58deg, #ddd, #f6f6f6);
  box-shadow: inset 0 -10px 0 rgba(black, .13);

  .glypto-title {
    margin: 0;
  }
}

.glypto-breadcrumbs {
  transition: 160ms;
  margin-top: -30px;
  font-weight: bold;
  font-size: em(12);
  line-height: 27px;
  color: $dark-grey;
  opacity: .7;

  &:hover {
    opacity: 1;
  }

  a:link,
  a:hover,
  a:visited {
    color: inherit;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  .sep {
    opacity: .4;
    margin: 0 em(4);
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
middleman-sculptor-0.16 lib/middleman-sculptor/template/source/assets/styles/glyptotheque/_base.scss
middleman-sculptor-0.15 lib/middleman-sculptor/template/source/assets/styles/glyptotheque/_base.scss