From cd9681f5a304bdcc812407553f157e5437528e78 Mon Sep 17 00:00:00 2001 From: Geoffrey Frogeye Date: Wed, 27 Apr 2016 15:53:44 +0200 Subject: [PATCH] Ajustement in AW --- public/main.js | 2 +- public/style.css | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/public/main.js b/public/main.js index 23a8e67..e8df403 100644 --- a/public/main.js +++ b/public/main.js @@ -39,7 +39,7 @@ $(function() { var list = $('#scores ol'); list.empty(); for (i in scores) { - if (i < 15) { + if (i < 8) { var obj = scores[i]; list.append($('
  • ').text(obj.score + ' - ' + obj.name)); } diff --git a/public/style.css b/public/style.css index 69f1a73..9157dd3 100644 --- a/public/style.css +++ b/public/style.css @@ -35,7 +35,6 @@ body { } #main { - margin-top: 30px; font-family: Arcadepix; } @@ -45,7 +44,7 @@ body { #bestBlock { position: absolute; - top: 150px; + top: 50px; width: 600px; left: 50%; margin-left: -300px; @@ -54,12 +53,12 @@ body { } #bestBlock .score { - color: red; + color: cyan; font-size: 500%; } #bestBlock .name { font-size: 200%; - color: red; + color: cyan; text-transform: uppercase; } -- libgit2 0.21.2