changement de couleur + fonts

This commit is contained in:
Jean-Christophe Cura 2016-12-05 23:18:49 +01:00
parent bd69e684a8
commit 5396a938ad
3 changed files with 22 additions and 16 deletions

View File

@ -6,6 +6,8 @@
<link rel="stylesheet" type="text/css" href="newyear.css" />
<link rel="icon" type="image/png" href="terminal.png" />
<link rel="SHORTCUT ICON" href="terminal.png"/>
<link href='https://fonts.googleapis.com/css?family=Merriweather+Sans' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
</head>
<body id=new_year_body>

View File

@ -2,6 +2,7 @@ body
{
text-align:center;
background:black;
font-family: 'Raleway', sans-serif;
}
div.new_year_text_css
@ -33,7 +34,7 @@ div.tsimple_css
{
/*border: solid 1px;*/
font-size:20px;
color: #FFFFFF;
color: #FF0000;
}
div.unit
{

View File

@ -1,4 +1,4 @@
function gup( name )
function gup( name )
{
name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
var regexS = "[\\?&]"+name+"=([^&#]*)";
@ -39,7 +39,7 @@ function GetTimeStr()
function ClockInTitle()
{
document.title = i18n("Bonne Ann<EFBFBD>e ") + GetTimeStr();
document.title = i18n("Bonne Année ") + GetTimeStr();
//setTimeout("ClockInTitle()",1000);
}
ClockInTitle();
@ -64,19 +64,22 @@ var next_year;
var coef=1000;
var colors;
/*
"#1D24F2",
"#FFFFFF",
"#E8101F",
*/
function resetcolors()
{
colors = [
"#3B0B17",
"#610B21",
"#8A0829",
"#B40431",
"#DF013A",
"#FF0040",
"#FE2E64",
"#FA5882",
"#F7819F",
"#F5A9BC"
"#1D24F2",
"#1D24F2",
"#FFFFFF",
"#FFFFFF",
"#E8101F",
"#E8101F",
"#FFFFFF",
"#FFFFFF"
];
}
@ -98,7 +101,7 @@ function CountDown()
if(countdown < 1 )
{
new_year_count.text("YOUPI !! Bonne Ann<EFBFBD>e !!");
new_year_count.text("YOUPI !! Bonne Année !!");
setTimeout(calcNextYear, 60000);
}
else
@ -107,7 +110,7 @@ function CountDown()
var count_S = countdown+"";
var count_T = count_S.split("");
$(".t_css").text("0");
$(".t_css").text("");
for(var j=0;j<8;j++)
{
@ -135,7 +138,7 @@ function CountDown()
{
$("#t"+(8-(count_T.length-i))).text(count_T[i]);
}
var formatedCounter = "Nouvel an dans: " + FormatDigit(""+(parseInt(countdown/60/60/24))+" jours "+(parseInt(countdown/60/60))%24) + " heures " +FormatDigit(""+(parseInt(countdown/60))%60)+ " minutes " + FormatDigit(""+countdown%60) + " secondes";
var formatedCounter = FormatDigit(""+(parseInt(countdown/60/60/24))+" jours "+(parseInt(countdown/60/60))%24) + " heures " +FormatDigit(""+(parseInt(countdown/60))%60)+ " minutes " + FormatDigit(""+countdown%60) + " secondes " + now.getMilliseconds() + " millisecondes";
document.title = formatedCounter;
$("#tsimple").text(formatedCounter);