@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg); } }
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0); }
  100% {
    -moz-transform: rotate(360deg); } }
@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
.example .spin {
  text-align: center;
  -webkit-animation: spin 1s infinite linear;
  -moz-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear; }
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in; } }
@-moz-keyframes flip {
  0% {
    -moz-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -moz-animation-timing-function: ease-out; }
  40% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -moz-animation-timing-function: ease-out; }
  50% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -moz-animation-timing-function: ease-in; }
  80% {
    -moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -moz-animation-timing-function: ease-in; }
  100% {
    -moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -moz-animation-timing-function: ease-in; } }
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -moz-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -o-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -o-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
.example .flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation: flip 1s infinite;
  -moz-animation: flip 1s infinite;
  animation: flip 1s infinite; }
.example .box-reflection {
  -webkit-box-reflect: below 2px linear-gradient(transparent, transparent 50%, rgba(255, 255, 255, 0.4));
  margin-bottom: 150px; }
.example .grayscale {
  -webkit-filter: grayscale(50%);
  filter: grayscale(50%); }
@-webkit-keyframes brightness {
  0% {
    -webkit-filter: brightness(100%); }
  100% {
    -webkit-filter: brightness(200%); } }
@-moz-keyframes brightness {}
@keyframes brightness {
  0% {
    -webkit-filter: brightness(100%);
    filter: brightness(100%); }
  100% {
    -webkit-filter: brightness(200%);
    filter: brightness(200%); } }
.example .filters {
  -webkit-animation: brightness 3s linear 0s infinite alternate;
  -moz-animation: brightness 3s linear 0s infinite alternate;
  animation: brightness 3s linear 0s infinite alternate; }
.example.font {
  font-size: 50px;
  font-family: "Playfair Display";
  line-height: 1;
  margin-bottom: 20px;
  text-rendering: optimizeLegibility; }
  .example.font.bars {
    display: inline-block;
    position: relative; }
    .example.font.bars > * {
      z-index: 5; }
    .example.font.bars:before {
      content: "";
      position: absolute;
      top: 9px;
      height: 34px;
      left: 0;
      width: 100%;
      z-index: 4;
      border-top: 1px solid rgba(0, 0, 0, 0.15);
      border-bottom: 1px solid rgba(0, 0, 0, 0.15); }
.example .liga {
  -webkit-font-feature-settings: "liga" on;
  -moz-font-feature-settings: "liga" on;
  -ms-font-feature-settings: "liga" on;
  font-feature-settings: "liga" on; }
.example .no-liga {
  -webkit-font-feature-settings: "liga" off;
  -moz-font-feature-settings: "liga" off;
  -ms-font-feature-settings: "liga" off;
  font-feature-settings: "liga" off; }
.example .dlig {
  -webkit-font-feature-settings: "dlig" on;
  -moz-font-feature-settings: "dlig" on;
  -ms-font-feature-settings: "dlig" on;
  font-feature-settings: "dlig" on; }
.example .no-dlig {
  -webkit-font-feature-settings: "dlig" off;
  -moz-font-feature-settings: "dlig" off;
  -ms-font-feature-settings: "dlig" off;
  font-feature-settings: "dlig" off; }
.example .onum {
  -webkit-font-feature-settings: "onum" on;
  -moz-font-feature-settings: "onum" on;
  -ms-font-feature-settings: "onum" on;
  font-feature-settings: "onum" on; }
.example .lnum {
  -webkit-font-feature-settings: "lnum" on;
  -moz-font-feature-settings: "lnum" on;
  -ms-font-feature-settings: "lnum" on;
  font-feature-settings: "lnum" on; }
.example .frac {
  -webkit-font-feature-settings: "frac" on;
  -moz-font-feature-settings: "frac" on;
  -ms-font-feature-settings: "frac" on;
  font-feature-settings: "frac" on; }
.example .no-frac {
  -webkit-font-feature-settings: "frac" off;
  -moz-font-feature-settings: "frac" off;
  -ms-font-feature-settings: "frac" off;
  font-feature-settings: "frac" off; }
.example .kern {
  -webkit-font-feature-settings: "kern" on;
  -moz-font-feature-settings: "kern" on;
  -ms-font-feature-settings: "kern" on;
  font-feature-settings: "kern" on; }
.example .no-kern {
  -webkit-font-feature-settings: "kern" off;
  -moz-font-feature-settings: "kern" off;
  -ms-font-feature-settings: "kern" off;
  font-feature-settings: "kern" off; }
@-webkit-keyframes vary-width {
  0% {
    max-width: 100px; }
  10% {
    max-width: 100px; }
  90% {
    max-width: 350px; }
  100% {
    max-width: 350px; } }
@-moz-keyframes vary-width {
  0% {
    max-width: 100px; }
  10% {
    max-width: 100px; }
  90% {
    max-width: 350px; }
  100% {
    max-width: 350px; } }
@keyframes vary-width {
  0% {
    max-width: 100px; }
  10% {
    max-width: 100px; }
  90% {
    max-width: 350px; }
  100% {
    max-width: 350px; } }
.example .ellipsis {
  padding: 5px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation: vary-width ease-in 4s infinite alternate;
  -moz-animation: vary-width ease-in 4s infinite alternate;
  animation: vary-width ease-in 4s infinite alternate; }
.example.hyphens {
  width: 140px;
  font-size: 30px;
  font-family: "Playfair Display";
  line-height: 1;
  padding: 5px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  margin-top: -10px;
  margin-bottom: 15px; }
  .example.hyphens.auto {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto; }
  .example.hyphens.none {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none; }
  .example.hyphens.manual {
    -webkit-hyphens: manual;
    -moz-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual; }

/*# sourceMappingURL=examples.css.map */
