diff --git a/page.php b/page.php
index 1d73c31..d2c14a1 100644
--- a/page.php
+++ b/page.php
@@ -77,19 +77,20 @@ foreach ($games as $key => $value) {
echo "
";
echo "
". $games[$key]["game_name"] ." (". $games[$key]["game_id"] .")";
echo "
";
- echo "Total Time Played :
Total Time Played
";
+ echo "First Played
". $ps4->secondsToDate($games[$key]["game_played_first"]) ."
";
+ echo "Last Played
";
if ($games[$key]["game_played_last"] == -1) {
echo "now playing";
} else {
echo $ps4->secondsToDate($games[$key]["game_played_last"]);
}
+ echo "
";
if ($details == $games[$key]["game_id"]) {
echo "
Soon, we show details.";
diff --git a/style.css b/style.css
index 1c20de9..a8adccb 100644
--- a/style.css
+++ b/style.css
@@ -64,6 +64,29 @@ body{
.padding-bottom-3 {
padding-bottom: 3px;
}
+
.padding-bottom-10 {
padding-bottom: 10px;
-}
\ No newline at end of file
+}
+
+.gameinfoline {
+
+}
+
+.gameinfohead {
+ display: inline-block;
+ width: 150px;
+ text-align: left;
+ text-overflow: ellipsis;
+}
+.gameinfoseparator:before {
+ content: "";
+}
+.gameinfoseparator {
+ display: inline;
+}
+
+.gameinfodetails {
+ padding-left: 3px;
+ display: inline;
+}