From 9b9eded47ea603a12a5b8e8a9df52bb757da9990 Mon Sep 17 00:00:00 2001 From: partisan Date: Sun, 2 Mar 2025 12:00:25 +0100 Subject: [PATCH] fixed 'fetch time' layout on mobile --- main.go | 6 +++--- static/css/style.css | 17 +++++++++++++++-- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/main.go b/main.go index 12c2381..c1b769d 100755 --- a/main.go +++ b/main.go @@ -226,7 +226,7 @@ func runServer() { w.Header().Set("Content-Type", "application/opensearchdescription+xml") http.ServeFile(w, r, "static/opensearch.xml") }) - printInfo("Website functionality enabled.") + printInfo("Website is enabled.") } else { // Redirect all website routes to a "service disabled" handler http.HandleFunc("/static/", handleWebsiteDisabled) @@ -238,7 +238,7 @@ func runServer() { http.HandleFunc("/image_status", handleWebsiteDisabled) http.HandleFunc("/privacy", handleWebsiteDisabled) http.HandleFunc("/opensearch.xml", handleWebsiteDisabled) - printInfo("Website functionality disabled.") + printInfo("Website is disabled.") } if config.NodesEnabled { @@ -252,7 +252,7 @@ func runServer() { func handleWebsiteDisabled(w http.ResponseWriter, r *http.Request) { w.Header().Set("Content-Type", "text/plain") w.WriteHeader(http.StatusServiceUnavailable) - _, _ = w.Write([]byte("The website functionality is currently disabled.")) + _, _ = w.Write([]byte("The website is currently disabled.")) } func handlePrivacyPage(w http.ResponseWriter, r *http.Request) { diff --git a/static/css/style.css b/static/css/style.css index 53606c6..a09cc6d 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1602,15 +1602,27 @@ body, h1, p, a, input, button { } .fetched_img { - margin-top: 135px !important; + margin-top: 25px !important; margin-left: 1.2% !important; left: 0px !important; } .fetched_vid { - margin-top: 135px !important; + margin-top: 25px !important; } + .fetched_dif_videos { + margin-top: 135px !important; + } + + .fetched_dif_files{ + margin-top: 25px !important; + } + + .fetched_dif_images { + margin-top: 25px; + } + .results_settings { left: 20px; font-size: 13px; @@ -1622,6 +1634,7 @@ body, h1, p, a, input, button { } form.torrent-sort { + margin-top: 35px; left: 20px; }