From 3c58697163755fa40e28b9c227ebc2e9e49a9fcf Mon Sep 17 00:00:00 2001 From: grey Date: Sat, 17 Apr 2021 00:30:44 +0200 Subject: [PATCH] Changes to the flow of the main bookshelf page --- static/css/skeleton.css | 4 ++-- template/bookshelf.html | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/static/css/skeleton.css b/static/css/skeleton.css index 2828d08..8ab3d6c 100644 --- a/static/css/skeleton.css +++ b/static/css/skeleton.css @@ -33,7 +33,7 @@ width: 100%; max-width: 960px; margin: 0 auto; - padding: 0 20px; + padding: 0 15px; box-sizing: border-box; } .column, .columns { @@ -484,4 +484,4 @@ there. 50% { opacity: 0.5; } -} +} \ No newline at end of file diff --git a/template/bookshelf.html b/template/bookshelf.html index 6310998..45464e0 100644 --- a/template/bookshelf.html +++ b/template/bookshelf.html @@ -50,7 +50,7 @@ > Add new movie
-
+
@@ -69,7 +69,7 @@ currenElm = json[i] if(currenElm.movieTitel.toLowerCase().replace("(", "").replace(")", "").includes(e.target.value.toLowerCase())){ console.log(currenElm.movieID) - elem.innerHTML += "

' + currenElm.movieTitel + "
" + elem.innerHTML += "

' + currenElm.movieTitel + "
" } i++ } @@ -79,7 +79,7 @@ elem = document.getElementById("listOfMovies") while(i < json.length){ currenElm = json[i] - elem.innerHTML += "

' + currenElm.movieTitel + "
" + elem.innerHTML += "

' + currenElm.movieTitel + "
" i++; }