diff --git a/libary.php b/libary.php index 05e0f35..f45211d 100755 --- a/libary.php +++ b/libary.php @@ -302,29 +302,31 @@ include("header.php"); } } } + + $authorUrl = "libary.php?search=".urlencode($author)."&searchby=dev"; + if($playableSearch === true || $searchUsed === false) + $authorUrl .= "&playable=on"; + if($simulatorSearch === true || $searchUsed === false) + $authorUrl .= "&simulator=on"; + if($unplayableSearch === true || $searchUsed === false) + $authorUrl .= "&unplayable=on"; ?>
- - - - - - - - - - +
+ + + + + + + + + + +
+
diff --git a/style.css b/style.css index fe1b191..28a3c7c 100755 --- a/style.css +++ b/style.css @@ -213,6 +213,16 @@ .psm-game-info > table { display: block; } + + .psm-game-title { + display: flex; + flex-direction: row; + align-items: center; + } + + .psm-game-title > span { + margin-right: 3px; + } .psm-meta { backdrop-filter: blur(10px);
Genre: