Skip to content

Commit

Permalink
Make the site responsive (#1382)
Browse files Browse the repository at this point in the history
* Removed line 47 & 68, added line 154

* Line 61 removed inline styles from header

Co-authored-by: Harsh Khandeparkar <34770591+HarshKhandeparkar@users.noreply.github.com>
Co-authored-by: Jeffrey Warren <jeff@unterbahn.com>
  • Loading branch information
3 people authored Oct 17, 2020
1 parent 11478ce commit 8c461bb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
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
2 changes: 1 addition & 1 deletion examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,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

0 comments on commit 8c461bb

Please sign in to comment.