diff --git a/code/game.css b/code/game.css index 1335b0d..776ff7f 100644 --- a/code/game.css +++ b/code/game.css @@ -1,5 +1,5 @@ @font-face { - font-family: augie; src: url('ress/augie.ttf'); + font-family: sergoe; src: url('ress/sergoepr.ttf'); } .all-container { @@ -128,8 +128,14 @@ text-align: center; } + + .texte { + font-size: medium; + font-family: Segoe; + } + .texteG { font-size: xx-large; font-weight: bold; - font-family: 'Segoe print'; + font-family: Segoe; } \ No newline at end of file diff --git a/code/highscores.css b/code/highscores.css index 879ed77..c2526da 100644 --- a/code/highscores.css +++ b/code/highscores.css @@ -1,3 +1,7 @@ +@font-face { + font-family: sergoe; src: url('ress/sergoepr.ttf'); +} + .all-container { margin-left: auto; margin-right: auto; @@ -127,15 +131,16 @@ margin-right: auto; margin-left: 15px; } + .texte { font-size: medium; - font-family: 'Segoe print'; + font-family: Segoe; } .texteG { font-size: xx-large; font-weight: bold; - font-family: 'Segoe print'; + font-family: Segoe; } .bd { diff --git a/code/index.css b/code/index.css index 959e82a..a24b81d 100644 --- a/code/index.css +++ b/code/index.css @@ -1,3 +1,7 @@ +@font-face { + font-family: sergoe; src: url('ress/sergoepr.ttf'); +} + .all-container { margin-left: auto; margin-right: auto; @@ -135,13 +139,13 @@ .texte { font-size: medium; - font-family: 'Segoe print'; + font-family: Segoe; } .texteG { font-size: xx-large; font-weight: bold; - font-family: 'Segoe print'; + font-family: Segoe; } ul { diff --git a/code/index.php b/code/index.php index 0855b57..b86ba04 100644 --- a/code/index.php +++ b/code/index.php @@ -165,11 +165,11 @@ if(isset($_POST["game_mode"]) && $_POST["game_mode"]!="" && $_POST["difficulty"] } else { - $phrase="1° place : ".$a["player"].", ".$a[0]." ".$unit; + $phrase="1° ".$a["player"].", ".$a[0]." ".$unit; $cpt=2; while ($row = $result->fetchArray()) { - $phrase=$phrase."
".$cpt."° : ".$row["player"].", ".$row["score"]." ".$unit; + $phrase=$phrase."
".$cpt."° ".$row["player"].", ".$row["score"]." ".$unit; $cpt++; } diff --git a/code/ress/segoepr.ttf b/code/ress/segoepr.ttf new file mode 100644 index 0000000..38f696d Binary files /dev/null and b/code/ress/segoepr.ttf differ diff --git a/code/score.php b/code/score.php index 3e92981..bc08693 100644 --- a/code/score.php +++ b/code/score.php @@ -37,11 +37,11 @@ if($a==false) } else { - $phrase="1° place : ".$a["player"].", ".$a[0]." ".$unit; + $phrase="1° ".$a["player"].", ".$a[0]." ".$unit; $cpt=2; while ($row = $result->fetchArray()) { - $phrase=$phrase."
".$cpt."° : ".$row["player"].", ".$row["score"]." ".$unit; + $phrase=$phrase."
".$cpt."° ".$row["player"].", ".$row["score"]." ".$unit; $cpt++; }