From 54adab9662301f0b6cb052ee63975fbfec7d8d68 Mon Sep 17 00:00:00 2001 From: Ant Zucaro Date: Tue, 3 Mar 2015 20:44:55 -0500 Subject: [PATCH] The statline is a class, not an ID. --- xonstat/static/css/app.css | 5 ++--- xonstat/templates/main_index.mako | 6 +++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/xonstat/static/css/app.css b/xonstat/static/css/app.css index 90932eb..dee747b 100644 --- a/xonstat/static/css/app.css +++ b/xonstat/static/css/app.css @@ -117,10 +117,9 @@ ul, ol, dl { margin-left: 0; } -/* One-off elements */ -#statline { +.statline { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 0.9rem; position: relative; - top: -25px; + top: -20px; } diff --git a/xonstat/templates/main_index.mako b/xonstat/templates/main_index.mako index 5e35cb6..8baec3a 100644 --- a/xonstat/templates/main_index.mako +++ b/xonstat/templates/main_index.mako @@ -13,13 +13,13 @@ Leaderboard
% if stat_line is None: -

Tracking Xonotic statistics since October 2011.

+

Tracking Xonotic statistics since October 2011.

% else: -

Tracking ${stat_line|n} since October 2011.

+

Tracking ${stat_line|n} since October 2011.

% endif % if day_stat_line is not None: -

${day_stat_line|n} in the past 24 hours.

+

${day_stat_line|n} in the past 24 hours.

% endif
-- 2.39.2