diff --git a/index.php b/index.php index d06778f..a5de5d1 100644 --- a/index.php +++ b/index.php @@ -212,7 +212,7 @@ if (isset($_GET['notice'])) { // Cache not available or expired else { - $homepages_list = ''; + $homepages_list .= ''; // Save cache file $save_cache = file_put_contents($cache_file, $homepages_list); diff --git a/style.css b/style.css index b6c9a6a..74d7f84 100644 --- a/style.css +++ b/style.css @@ -17,23 +17,6 @@ padding: 1em; } -.user-list { - display: flex; - flex-flow: row wrap; - justify-content: space-evenly; - list-style-type: none; - padding: 0; -} -.user-list li { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - flex: 10em; -} -.user-list::after { - content: ""; -} - body { margin: auto; padding: 1em; @@ -140,6 +123,24 @@ code > span.fl { padding-top: 5px; } +.user-list { + display: flex; + flex-flow: row wrap; + justify-content: space-evenly; + list-style-type: none; + padding: 0; +} +.user-list a { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + flex: 10em; +} +.user-list b { + background-color: #fb5; + color:#000; +} + input[type="text"], textarea { background-color: #333; @@ -294,10 +295,6 @@ pre { border-radius: 0.25em; /* Slight border radius for better appearance */ padding: 0.5em; /* Padding for better readability */ } -.recently-updated a { - font-weight: bold; - color: #fb5 !important; /* Use !important to override other styles */ -} #active-users { margin-top: 20px;