LibreY

- privacy respecting meta search engine
git clone git://git.acid.vegas/LibreY.git
Log | Files | Refs | Archive | README | LICENSE

commit 7f61a54141488e80da2d09eec32be3f9ec1711ac
parent 3ae47a1cfc40cf231d1c413cf88415e5cdb386a5
Author: Ahwx <ahwx@ahwx.org>
Date: Tue, 29 Aug 2023 00:35:38 +0200

fix: some padding (merge pull request #26 from osarthak/update) fixed active sub-search-button, did-you-mean, small footer

Diffstat:
Msearch.php | 1-
Mstatic/css/styles.css | 25+++++++++++++++++--------

2 files changed, 17 insertions(+), 9 deletions(-)

diff --git a/search.php b/search.php
@@ -69,7 +69,6 @@
                     }
                 ?>
             </div>
-        <hr>
         </form>
 
         <?php
diff --git a/static/css/styles.css b/static/css/styles.css
@@ -32,13 +32,13 @@ a,
 .special-result-container a,
 .did-you-mean a,
 .sub-search-button-wrapper a,
-.sub-search-button-wrapper a:visited{
+.sub-search-button-wrapper a:visited {
     color: #bd93f9;
 }
 
 .sub-search-button-wrapper .active {
     border-bottom: 2px #bd93f9 solid;
-    padding-bottom: 6px;
+    padding-bottom: 10px;
 }
 
 a:hover,
@@ -119,6 +119,7 @@ a:hover,
 
 .sub-search-button-wrapper {
     margin-left: 165px;
+    margin-bottom: 10px;
 }
 
 .search-button-wrapper button:hover,
@@ -136,9 +137,9 @@ a:hover,
     border: none;
     background-color: inherit;
     font-size: 15px;
-    margin-right: 14px;
-	cursor: pointer;
-	text-decoration: none;
+    margin-right: 20px;
+    cursor: pointer;
+    text-decoration: none;
 }
 
 .sub-search-button-wrapper img {
@@ -303,8 +304,7 @@ a[title] {
     width: 100vw;
     left: 0;
     background-color: var(--footer-bg);
-    padding-top: 15px;
-    padding-bottom: 15px;
+    padding: 10px;
     border-top: 1px solid var(--border);
     text-align: center;
 }
@@ -477,4 +477,12 @@ a[title] {
     .next-page-button-wrapper {
         margin-top: 30px;
     }
-}
+
+    .text-result-container,
+    #time,
+    .next-page-button-wrapper,
+    .did-you-mean {
+        margin-left: 20px;
+    }
+
+}
+\ No newline at end of file