diff options
| -rw-r--r-- | shader-picker.html | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/shader-picker.html b/shader-picker.html index db508aa..209cf9f 100644 --- a/shader-picker.html +++ b/shader-picker.html @@ -28,7 +28,7 @@ div { display: inline-block; padding: 10px;} .close,.remove { cursor: pointer; } #uploaded-url { display: none; width: 300px; } form { display: inline-block; } -#gallery { clear: right; width:100%;} +#gallery { clear: right; width:100%; padding: 0; } #gallery-images { display: block; max-height: 210px; overflow-y: auto; } #gallery-images img, #gallery-images canvas { max-width: 200px; height: 100px; margin: 5px; cursor: pointer; } </style> @@ -36,12 +36,14 @@ form { display: inline-block; } <body> <div id="gallery"> - <form id="gallery-search"> - <input type="text" id="dumpfm-search-query" value="duck bill"> - <button id="gallery-search">DUMP SEARCH</button> - </form> - <button id="gallery-random">IM RANDOM</button> - <span class="status"></span> + <div id="gallery-form"> + <form id="gallery-search"> + <input type="text" id="dumpfm-search-query" value="duck bill"> + <button id="gallery-search">DUMP SEARCH</button> + </form> + <button id="gallery-random">IM RANDOM</button> + <span class="status"></span> + </div> <div id="gallery-images"></div> </div> |
