Sha256: 7c94ec5b8fe037139e58cd5c0fe697e853405135f72cf73ebf7b22491195f3a3

Contents?: true

Size: 1.28 KB

Versions: 1

Compression:

Stored size: 1.28 KB

Contents

---
---

// Fonts and definitions

@import url("https://fonts.googleapis.com/css?family=IBM+Plex+Mono|IBM+Plex+Sans");

$font-size-base: 1.05rem;
$font-family-sans-serif: "IBM Plex Sans", sans-serif;
$font-family-monospace: "IBM Plex Mono", monospace;

$purple: #782b90;
$link-color: $purple;

// Bootstrap

@import "custom";

// My stuff

code {
  color: $purple;
}

.bg-purple {
    background-color: $purple;
}

@mixin color-margin($color) {
    border-left: solid 0.25em $color;
    padding: 0.5em;
    padding-left: 1em;
    background-color: $gray-100;
    border-radius: 0.5em;
    box-shadow: $box-shadow-sm;
}

pre {
    @include color-margin($purple);
}

.title {
    color: $purple;
    font-weight: bold;
    font-style: italic;
    line-height: 1.4;
    margin-top: 0.2em;
    margin-bottom: 0.5em;
}

.admonitionblock {
    @include color-margin($purple);
    margin-bottom: 1em;
    div {
        margin: 0;
    }
    td.icon {
      vertical-align: top;
      padding-right: 0.5em;
      .title {
        font-style: normal;
        font-weight: bold;
        text-transform: uppercase;
        &:after {
          content: ' / ';
        }
      }
    }
    td.content {
      p {
        margin: 0;
      }
    }
  }

  details {
    margin-bottom: 1em;
  }

  .card {
    margin-bottom: 1em;
  }

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vertx-howtos-jekyll-theme-0.3.0 assets/css/style.scss