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

Make the site responsive #1382

Merged
merged 10 commits into from
Oct 17, 2020
9 changes: 7 additions & 2 deletions examples/demo.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ body > .container-fluid {
.panel {
margin-left: 20px;
margin-right: 20px;
min-width:400px;
}

.mouse {
Expand All @@ -66,7 +65,6 @@ body > .container-fluid {
border-radius: 8px;
text-align: center;
color: #444;
min-width:300px;
}

.dropzone input {
Expand Down Expand Up @@ -156,6 +154,13 @@ body > .container-fluid {
margin: 0px 0px 0px 10px;
width: 250px;
}

@media(max-width: 768px) {
#dropzone {
margin: 0 0% 30px;
}
}

#dwnld {
max-width: 500px;
margin: 20px auto;
Expand Down
4 changes: 2 additions & 2 deletions examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@

<div class="container-fluid">

<header class="text-center" style="min-width: 450px">
<header class="text-center">
<h1><a href="/" target='_blank' class="name-header">Image Sequencer</a></h1>
<p>
A pure JavaScript sequential image processing system, inspired by storyboards. Instead of modifying the original
Expand Down Expand Up @@ -241,4 +241,4 @@ <h2>Improve this tool</h2>

</body>

</html>
</html>