Skip to content

Commit

Permalink
Merge branch 'gh-pages' of github.com:mperham/sidekiq into gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
mperham committed Feb 7, 2016
2 parents bba5f56 + 67c7061 commit 7330f3e
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
8 changes: 6 additions & 2 deletions _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ <h4>Questions, comments, &amp; concerns?<a
class="btn btn-default">info@contribsys.com</a></h4>
</div>
<form class="text-center" action="https://tinyletter.com/sidekiq" method="post" target="popupwindow" onsubmit="window.open('https://tinyletter.com/sidekiq', 'popupwindow', 'scrollbars=yes,width=800,height=600');return true">
<label for="tlemail">Subscribe to our semi-occasional newsletter and keep up to date on new Sidekiq features and changes.</label></p>
<input type="text" style="width:240px" name="email" id="tlemail" /><input type="hidden" value="1" name="embed"/><input type="submit" value="Subscribe" /></p>
<label for="tlemail">Subscribe to our semi-occasional newsletter and keep up to date on new Sidekiq features and changes.</label>
<div class="subscribe-form">
<input type="text" style="width:240px" name="email" id="tlemail" class="subscribe-form__email" />
<input type="hidden" value="1" name="embed"/>
<input type="submit" value="Subscribe" class="btn btn-primary btn-white subscribe-form__submit" />
</div>
</form>
</footer>
<footer>
Expand Down
22 changes: 22 additions & 0 deletions css/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -6892,3 +6892,25 @@ footer small a:hover {
.products-table .glyphicon-minus-sign {
color: #c9302c
}
.subscribe-form__email {
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.subscribe-form__submit {
float: none !important;
width: 150px !important;
padding: 6px 0;
margin: 10px 0;
}

0 comments on commit 7330f3e

Please sign in to comment.