Skip to content
Snippets Groups Projects
Select Git revision
  • 44d7ce62a3853af36733539fcba7326a023c948e
  • initial default protected
2 results

Optin.css

Blame
  • Optin.css 650 B
    .optin {
      margin-top: 8%;
    }
    .optin p {
      font-size: 14px;
      font-weight: 100;
    }
    .optin button {
      color: #fff;
      padding: 6px 22px;
      text-transform: uppercase;
      font-family: "Roboto Condensed", sans-serif;
      background-color: rgba(255, 255, 255, 0.1);
      border: solid 2px transparent;
      cursor: pointer;
    }
    .optin button:hover {
      border-color: rgba(255, 255, 255, 0.3);
    }
    
    #modal {
      position: fixed;
      top: 100px;
      left: 30%;
      width: 500px;
      background: #fff;
      transition: opacity 1s;
      box-shadow: 0 7px 2px #444;
      z-index: 99999;
      opacity: 0;
    }
    #modal.is_open {
    }
    #modal .wrapper {
      color: #444;
      text-align: center;
      padding: 30px;
    }