Commit cd9681f5a304bdcc812407553f157e5437528e78

Authored by Geoffrey PREUD'HOMME
1 parent 12ff9794

Ajustement in AW

Showing 2 changed files with 4 additions and 5 deletions   Show diff stats
@@ -39,7 +39,7 @@ $(function() { @@ -39,7 +39,7 @@ $(function() {
39 var list = $('#scores ol'); 39 var list = $('#scores ol');
40 list.empty(); 40 list.empty();
41 for (i in scores) { 41 for (i in scores) {
42 - if (i < 15) { 42 + if (i < 8) {
43 var obj = scores[i]; 43 var obj = scores[i];
44 list.append($('<li>').text(obj.score + ' - ' + obj.name)); 44 list.append($('<li>').text(obj.score + ' - ' + obj.name));
45 } 45 }
@@ -35,7 +35,6 @@ body { @@ -35,7 +35,6 @@ body {
35 } 35 }
36 36
37 #main { 37 #main {
38 - margin-top: 30px;  
39 font-family: Arcadepix; 38 font-family: Arcadepix;
40 } 39 }
41 40
@@ -45,7 +44,7 @@ body { @@ -45,7 +44,7 @@ body {
45 44
46 #bestBlock { 45 #bestBlock {
47 position: absolute; 46 position: absolute;
48 - top: 150px; 47 + top: 50px;
49 width: 600px; 48 width: 600px;
50 left: 50%; 49 left: 50%;
51 margin-left: -300px; 50 margin-left: -300px;
@@ -54,12 +53,12 @@ body { @@ -54,12 +53,12 @@ body {
54 } 53 }
55 54
56 #bestBlock .score { 55 #bestBlock .score {
57 - color: red; 56 + color: cyan;
58 font-size: 500%; 57 font-size: 500%;
59 } 58 }
60 #bestBlock .name { 59 #bestBlock .name {
61 font-size: 200%; 60 font-size: 200%;
62 - color: red; 61 + color: cyan;
63 text-transform: uppercase; 62 text-transform: uppercase;
64 } 63 }
65 64