Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

media query for buttons #583

Merged
merged 4 commits into from Jan 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 11 additions & 4 deletions examples/demo.css
Expand Up @@ -128,17 +128,17 @@ h1 {
}
#save-seq {
display: block;
margin: 0 auto;
min-width: 250px;
margin: 0px 10px 0px 0px;
width: 250px;
}
.info {
padding: 8px;
text-align: center;
}
#gif {
display: block;
margin: 0 auto;
min-width: 250px;
margin: 0px 0px 0px 10px;
width: 250px;
}
#dwnld {
max-width: 500px;
Expand Down Expand Up @@ -199,6 +199,7 @@ h1 {

.radio-group {
margin-bottom: 20px;
overflow: scroll;
}


Expand Down Expand Up @@ -236,3 +237,9 @@ h1 {
.i-small {
left: 25px;
}

@media all and (max-width: 767px) {
.center-align {
justify-content: space-between;
}
}
6 changes: 3 additions & 3 deletions examples/index.html
Expand Up @@ -135,8 +135,8 @@ <h1>Image Sequencer</h1>
<div class="panel-body">

<div class="row center-align">
<button class="btn btn-primary btn-lg" name="save-sequence" id="save-seq">Save Sequence</button>
<button class="btn btn-primary btn-lg js-view-as-gif" id="gif">View GIF</button>
<button class="btn btn-primary btn-block btn-lg" name="save-sequence" id="save-seq">Save Sequence</button>
<button class="btn btn-primary btn-block btn-lg js-view-as-gif" id="gif">View GIF</button>
</div>


Expand Down Expand Up @@ -177,7 +177,7 @@ <h4 class="modal-title">Your gif is ready</h4>
</section>
</div>
</div>

<footer>
<hr style="margin:20px;"><center><a class="color:grey;" id="clear-cache">Clear offline cache</a></center>
</footer>
Expand Down