Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • 2019
  • 2017
3 results

style.css

Blame
  • style.css 3.11 KiB
    @font-face {
      font-family: 'Steinberg ITC';
      font-style: normal;
      font-weight: 700;
      src: url('./stenberg_itc.ttf') format('truetype');
    }
    
    html,
    body {
      font-size: 18px;
      line-height: 1.5;
      background: #000;
      color: #fff;
      font-family: 'Steinberg ITC';
    }
    
    h1,
    h2,
    h3 {
      /* center headlines */
      margin-left: auto;
      margin-right: auto;
    }
    
    .badge.badge-runner {
      background-color: #01AB45;
      color: #000;
    }
    .badge.badge-chaser {
      background-color: #FF3728;
    }
    
    #map {
      height: 30rem;
      max-height: 50vh;
    }
    
    #map .leaflet-layer {
      filter: invert(100%);
      -webkit-filter: invert(100%);
    }
    #map.leaflet-container {
      background: #252525;
    }
    .map-div-icon {
      border-radius: 15px;
      border: 10px solid #FF001A;
      background-color: #252525;
      animation: 1.5s ease-in 0s infinite alternate blink;
      -moz-animation: 1.5s ease-in 0s infinite alternate blink;
      -webkit-animation: 1.5s ease-in 0s infinite alternate blink;
    }
    
    .content-section {
      padding-top: 10em;
    }
    
    .lead {
      font-size: 2em;
    }
    
    .btn-circle {
      border-radius: 50%;
      border: .3rem solid #fff;
      font-size: 2.1rem;
      width: 4rem;
      height: 4rem;
    }
    
    .btn-circle:hover i {
      animation: 1.5s ease-in-out 0s infinite pulse;
      -moz-animation: 1.5s ease-in-out 0s infinite pulse;
      -webkit-animation: 1.5s ease-in-out 0s infinite pulse;
    }
    @keyframes pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.5);
      }
      100% {
        transform: scale(1);
      }
    }
    @-moz-keyframes pulse {
      0% {
        -moz-transform: scale(1);
      }
      50% {
        -moz-transform: scale(1.5);
      }
      100% {
        -moz-transform: scale(1);
      }
    }
    @-webkit-keyframes pulse {
      0% {
        -webkit-transform: scale(1);
      }
      50% {
        -webkit-transform: scale(1.5);
      }
      100% {
        -webkit-transform: scale(1);
      }
    }
    
    @keyframes blink {
      0% {
        box-shadow: 0 0 10em 4em #42dca3aa;
      }
      100% {
        box-shadow: 0 0 14em 4em #ff001a;
      }
    }
    @-moz-keyframes blink {
      0% {
        box-shadow: 0 0 10em 4em #42dca3aa;
      }
      100% {
        box-shadow: 0 0 14em 4em #ff001a;
      }
    }
    @-webkit-keyframes blink {
      0% {
        box-shadow: 0 0 10em 4em #42dca3aa;
      }
      100% {
        box-shadow: 0 0 14em 4em #ff001a;
      }
    }
    
    .bg-insta {
      background: linear-gradient(to right, #FDCA5B, #E72F34, #D53D8F, #4365CA);
    }
    .color-insta {
      background-image: -webkit-gradient(to right, #FDCA5B, #E72F34, #D53D8F, #4365CA) !important;
      background-image: linear-gradient(to right, #FDCA5B 0%, #E72F34 40%, #D53D8F 70%, #4365CA 100%) !important;
      color: transparent !important;
      -webkit-background-clip: text;
      background-clip: text;
    }
    
    .chasers-vs-runner {
      display: flex;
      flex-wrap: nowrap;
      justify-content: center;
    }
    .chasers-vs-runner .space {
      width: 10%;
    }
    
    .img-stickman {
      height: 8em;
      transition: all .75s ease-out;
      transform: translateX(0);
      opacity: 1;
    }
    .img-stickman.out {
      transform: translateX(-50vw);
      opacity: 0;
    }
    .stickman-wrapper {
      width: 100%;
      overflow-x: hidden;
    }
    
    iframe {
      background: #000;
    }
    
    @media (orientation: portrait) {
      .intro-text-lg {
        font-size: 7vw;
      }
      .intro-text {
        font-size: 5vw;
      }
    }
    
    @media (orientation: landscape) {
      .intro-text-lg {
        font-size: 7vh;
      }
      .intro-text {
        font-size: 5vh;
      }
    }