Non, c'est le truc du style Poisson, Bélier, Capricorne...papoo a écrit : c'est l'information constellation que tu souhaite avoir du site http://www.calendrier-lunaire.net/?
[Tuto] Utiliser Monitor
Re: Custom page
RaspberryPi - RFLink - Zwave - WH2600
Domoticz : 2020.2 | Dashticz : V3.12 Master | dzvents : 3.0.2 | Python : 3.7.3
Domoticz : 2020.2 | Dashticz : V3.12 Master | dzvents : 3.0.2 | Python : 3.7.3
Re: Custom page
RaspberryPi - RFLink - Zwave - WH2600
Domoticz : 2020.2 | Dashticz : V3.12 Master | dzvents : 3.0.2 | Python : 3.7.3
Domoticz : 2020.2 | Dashticz : V3.12 Master | dzvents : 3.0.2 | Python : 3.7.3
Re: Custom page
SalutChris54220 a écrit :merci beaucoup
garce a vous j'ai réussi a me faire une petite page météo Perso;)
Comment as tu fait?
Tu as mis le java script dans la page meteo.htlm?
Chez moi çà n'afiche pas la lune!
Merci
-
Chris54220
- Messages : 124
- Inscription : 20 mars 2016, 20:54
- Localisation : Nancy
Re: Custom page
Je t'envoie ma page ce soirbricoyeye a écrit :
Salut
Comment as tu fait?
Tu as mis le java script dans la page meteo.htlm?
Chez moi çà n'afiche pas la lune!
Merci
-
Chris54220
- Messages : 124
- Inscription : 20 mars 2016, 20:54
- Localisation : Nancy
Re: Custom page
meteo.htmlbricoyeye a écrit :Grand merci
Code : Tout sélectionner
<!-- load page stylesheet -->
<script>
$('head').append('<link rel="stylesheet" href="css/meteo.css">');
</script>
<script>
var maintenant=new Date();
var jour = maintenant.getDay();
var tab_jour = new Array("Dim.", "Lun.", "Mar.", "Mer.", "Jeu.", "Ven.", "Sam.");
$( "#jour0").append( tab_jour[jour] );
jour = jour == 6 ? 0 : jour +1;
$( "#jour1").append( tab_jour[jour] );
jour = jour == 6 ? 0 : jour +1;
$( "#jour2").append( tab_jour[jour] );
jour = jour == 6 ? 0 : jour +1;
$( "#jour3").append( tab_jour[jour] );
var JsonAddress = "http://www.prevision-meteo.ch/services/json/"+city;
function color(temp) {
if (parseInt(temp, 10) >= 35) { return '<span style="color:'+T35+'">'+temp; }
else if (parseInt(temp, 10) >= 34) { return '<span style="color:'+T34+'">'+temp; }
else if (parseInt(temp, 10) >= 33) { return '<span style="color:'+T33+'">'+temp; }
else if (parseInt(temp, 10) >= 32) { return '<span style="color:'+T32+'">'+temp; }
else if (parseInt(temp, 10) >= 31) { return '<span style="color:'+T31+'">'+temp; }
else if (parseInt(temp, 10) >= 30) { return '<span style="color:'+T30+'">'+temp; }
else if (parseInt(temp, 10) >= 29) { return '<span style="color:'+T29+'">'+temp; }
else if (parseInt(temp, 10) >= 28) { return '<span style="color:'+T28+'">'+temp; }
else if (parseInt(temp, 10) >= 27) { return '<span style="color:'+T27+'">'+temp; }
else if (parseInt(temp, 10) >= 26) { return '<span style="color:'+T26+'">'+temp; }
else if (parseInt(temp, 10) >= 25) { return '<span style="color:'+T25+'">'+temp; }
else if (parseInt(temp, 10) >= 24) { return '<span style="color:'+T24+'">'+temp; }
else if (parseInt(temp, 10) >= 23) { return '<span style="color:'+T23+'">'+temp; }
else if (parseInt(temp, 10) >= 22) { return '<span style="color:'+T22+'">'+temp; }
else if (parseInt(temp, 10) >= 21) { return '<span style="color:'+T21+'">'+temp; }
else if (parseInt(temp, 10) >= 20) { return '<span style="color:'+T20+'">'+temp; }
else if (parseInt(temp, 10) >= 19) { return '<span style="color:'+T19+'">'+temp; }
else if (parseInt(temp, 10) >= 18) { return '<span style="color:'+T18+'">'+temp; }
else if (parseInt(temp, 10) >= 17) { return '<span style="color:'+T17+'">'+temp; }
else if (parseInt(temp, 10) >= 16) { return '<span style="color:'+T16+'">'+temp; }
else if (parseInt(temp, 10) >= 15) { return '<span style="color:'+T15+'">'+temp; }
else if (parseInt(temp, 10) >= 14) { return '<span style="color:'+T14+'">'+temp; }
else if (parseInt(temp, 10) >= 13) { return '<span style="color:'+T13+'">'+temp; }
else if (parseInt(temp, 10) >= 12) { return '<span style="color:'+T12+'">'+temp; }
else if (parseInt(temp, 10) >= 11) { return '<span style="color:'+T11+'">'+temp; }
else if (parseInt(temp, 10) >= 10) { return '<span style="color:'+T10+'">'+temp; }
else if (parseInt(temp, 10) >= 9) { return '<span style="color:'+T09+'">'+temp; }
else if (parseInt(temp, 10) >= 8) { return '<span style="color:'+T08+'">'+temp; }
else if (parseInt(temp, 10) >= 7) { return '<span style="color:'+T07+'">'+temp; }
else if (parseInt(temp, 10) >= 6) { return '<span style="color:'+T06+'">'+temp; }
else if (parseInt(temp, 10) >= 5) { return '<span style="color:'+T05+'">'+temp; }
else if (parseInt(temp, 10) >= 4) { return '<span style="color:'+T04+'">'+temp; }
else if (parseInt(temp, 10) >= 3) { return '<span style="color:'+T03+'">'+temp; }
else if (parseInt(temp, 10) >= 2) { return '<span style="color:'+T02+'">'+temp; }
else if (parseInt(temp, 10) >= 1) { return '<span style="color:'+T01+'">'+temp; }
else if (parseInt(temp, 10) >= 0) { return '<span style="color:'+T00+'">'+temp; }
else { return '<span style="color:'+T000+'">'+temp; }
}
$.getJSON(JsonAddress, function (json) {
$.each(json.fcst_day_0.hourly_data, function( index, value ) {
//console.log( index + ": " + value.ICON );
$( "#day_0_" + index ).append( "<img src=\"" + value.ICON + "\" alt=\"\" />" );
$( "#temp_day_0_" + index ).append( color(value.TMP2m) + '<sup style="font-size:50%;" >℃</sup></span>' );
});
$.each(json.fcst_day_1.hourly_data, function( index, value ) {
//console.log( index + ": " + value.ICON );
$( "#day_1_" + index ).append( "<img src=\"" + value.ICON + "\" alt=\"\" />" )
$( "#temp_day_1_" + index ).append( color(value.TMP2m) + '<sup style="font-size:50%;" >℃</sup></span>' );
});
$.each(json.fcst_day_2.hourly_data, function( index, value ) {
//console.log( index + ": " + value.ICON );
$( "#day_2_" + index ).append( "<img src=\"" + value.ICON + "\" alt=\"\" />" )
$( "#temp_day_2_" + index ).append( color(value.TMP2m) + '<sup style="font-size:50%;" >℃</sup></span>' );
});
$.each(json.fcst_day_3.hourly_data, function( index, value ) {
//console.log( index + ": " + value.ICON );
$( "#day_3_" + index ).append( "<img src=\"" + value.ICON + "\" alt=\"\" />" )
$( "#temp_day_3_" + index ).append( color(value.TMP2m) + '<sup style="font-size:50%;" >℃</sup></span>' );
});
});
function ghost(){
for (i = 1, hour = new Date().getHours() ; i < hour ; i=i+2) {
if (!$("#day_0_"+i+"H00").hasClass('ghost')) {
$("#day_0_"+i+"H00").addClass('ghost');
}
if (!$("#temp_day_0_"+i+"H00").hasClass('ghost')) {
$("#temp_day_0_"+i+"H00").addClass('ghost');
}
}
}
$(ghost);
setInterval( ghost, 5*60*1000);
</script>
<script type="text/javascript" language="javascript">
var maintenant = new Date();
//console.log( " maintenant : " + maintenant )
var jour = maintenant.getDate();
//console.log( " jour : " + jour )
var mois = maintenant.getMonth()+1;
//console.log( " mois : " + mois )
var annee = maintenant.getFullYear();
//console.log( " annee : " + annee )
//============= phases lunaire ========================
function julianDate(d, m, y) {
var yy = y - Math.floor((12 - m) / 10);
var mm = m + 9;
if (mm >= 12) {
mm = mm - 12
}
var k1 = Math.floor(365.25 * (yy + 4712));
var k2 = Math.floor(30.6001 * mm + 0.5);
var k3 = Math.floor(Math.floor((yy / 100) + 49) * 0.75) - 38;
var j = k1 + k2 + d + 59;
if (j > 2299160) {
j = j - k3
}
return j
}
function moonAge(d, m, y){
var j = julianDate(d, m, y);
var ip = (j + 4.867) / 29.53059;
ip = ip - Math.floor(ip);
if (ip < 0.5) {
var ag = ip * 29.53059 + 29.53059 / 2;
} else {
var ag = ip * 29.53059 - 29.53059 / 2;
}
return Math.round(ag)+1
// return ag +1
}
var theMoon = moonAge(jour,mois,annee)
console.log( "Phase Lunaire : " + theMoon )
if (theMoon >= 29) {
moonText = "Nouvelle Lune";
moonIcon = "wi-moon-new";
moonPNG = "moon0.png";
} else if (theMoon < 29 && theMoon > 23) {
moonText = "Dernier croissant";
moonIcon = "wi-moon-waning-crescent-3";
moonPNG = "moon7.png";
} else if (theMoon <= 23 && theMoon > 22) {
moonText = "Dernier quartier";
moonIcon = "wi-moon-third-quarter";
moonPNG = "moon6.png";
} else if (theMoon <= 22 && theMoon > 15) {
moonText = "Gibbeuse décroissante";
moonIcon = "wi-moon-waning-gibbous-3";
moonPNG = "moon5.png";
} else if (theMoon <= 15 && theMoon > 13) {
moonText = "Pleine lune";
moonIcon = "wi-moon-full";
moonPNG = "moon4.png";
} else if (theMoon <= 13 && theMoon > 8) {
moonText = "Gibbeuse croissante";
moonIcon = "wi-moon-waxing-gibbous-2";
moonPNG = "moon3.png";
} else if (theMoon <= 8 && theMoon > 6) {
moonText = "Premier Quartier";
moonIcon = "wi-moon-first-quarter";
moonPNG = "moon2.png";
} else if (theMoon <= 6 && theMoon > 1) {
moonText = "Premier croissant";
moonIcon = "wi-moon-waxing-crescent-2";
moonPNG = "moon1.png";
} else {
moonText = "Nouvelle Lune";
moonIcon = "wi-moon-new";
moonPNG = "moon0.png";
}
console.log( "moonIcon : " + moonIcon )
console.log( "Phase Lunaire : <i class=\"wi wi-moon-" + theMoon + "\"></i>")
$( "#moontxt").append( moonText );
$( "#moon").append("<img src=\"./icons/meteo/" + moonPNG + "\" alt=\"\" />");
</script>
<!-- Page -->
<div class="cnt v-wrap">
<div class="v-box">
<!-- contenu -->
<!--
le contenu de votre page ne doit pas dépasser les dimensions suivantes
largeur: 962px
hauteur: 541px
-->
<div>
<div class="frame">
<div id="ls_meteo1"></div><div id="meteo1">--</div><div id="desc_meteo1">meteo1</div>
</div>
<div class="frame">
<div id="ls_meteo3"></div><div id="meteo3">--</div><div id="desc_meteo3">meteo3</div>
</div>
<div class="frame">
<div id="ls_meteo25"></div><div id="meteo25">--</div><div id="desc_meteo25">meteo25</div>
</div>
<div class="frame">
<div id="ls_meteo4"></div><div id="moon"></div><div id="moontxt"></div>
</div>
</div>
<div>
<div class="frame">
<div id="ls_meteo6"></div><div id="meteo6">--</div><div id="desc_meteo6">meteo6</div>
</div>
<div class="frame">
<div id="ls_meteo7"></div><div id="meteo7">--</div><div id="desc_meteo7">meteo7</div>
</div>
<div class="frame">
<div id="ls_meteo8"></div><div id="meteo8">--</div><div id="desc_meteo8">meteo8</div>
</div>
<div class="frame">
<div id="ls_meteo9"></div><div id="meteo9">--</div><div id="desc_meteo9">meteo9</div>
</div>
<div class="frame">
<div id="ls_meteo10"></div><div id="meteo10">--</div><div id="desc_meteo10">meteo10</div>
</div>
<div class="frame">
<div id="ls_meteo11"></div><div id="meteo11">--</div><div id="desc_meteo11">meteo11</div>
</div>
</div>
<!-- ================================================================================================== -->
<div class="stage">
</div>
<div>
<div class="frame">
<div id="ls_jour"></div><div id="jour"></div>
</div>
<div>
<div class="frame">
<div id="day_1H">1h</div>
</div>
<div class="frame">
<div id="day_3H">3h</div>
</div>
<div class="frame">
<div id="day_5H">5h</div>
</div>
<div class="frame">
<div id="day_7H">7h</div>
</div>
<div class="frame">
<div id="day_9H">9h</div>
</div>
<div class="frame">
<div id="day_11H">11h</div>
</div>
<div class="frame">
<div id="day_13H">13h</div>
</div>
<div class="frame">
<div id="day_15H">15h</div>
</div>
<div class="frame">
<div id="day_17H">17h</div>
</div>
<div class="frame">
<div id="day_19H">19h</div>
</div>
<div class="frame">
<div id="day_21H">21h</div>
</div>
<div class="frame">
<div id="day_23H">23h</div>
</div>
</div>
<div class="stage">
</div>
<div>
<div class="frame">
<div id="desc_jour0"></div><div id="jour0"></div>
</div>
</div>
<div class="frame">
<div id="day_0_1H00"></div><div id="temp_day_0_1H00"></div>
</div>
<div class="frame">
<div id="day_0_3H00"></div><div id="temp_day_0_3H00"></div>
</div>
<div class="frame">
<div id="day_0_5H00"></div><div id="temp_day_0_5H00"></div>
</div>
<div class="frame">
<div id="day_0_7H00"></div><div id="temp_day_0_7H00"></div>
</div>
<div class="frame">
<div id="day_0_9H00"></div><div id="temp_day_0_9H00"></div><div id="sep"></div>
</div>
<div class="frame">
<div id="day_0_11H00"></div><div id="temp_day_0_11H00"></div>
</div>
<div class="frame">
<div id="day_0_13H00"></div><div id="temp_day_0_13H00"></div>
</div>
<div class="frame">
<div id="day_0_15H00"></div><div id="temp_day_0_15H00"></div>
</div>
<div class="frame">
<div id="day_0_17H00"></div><div id="temp_day_0_17H00"></div>
</div>
<div class="frame">
<div id="day_0_19H00"></div><div id="temp_day_0_19H00"></div><div id="sep"></div>
</div>
<div class="frame">
<div id="day_0_21H00"></div><div id="temp_day_0_21H00"></div>
</div>
<div class="frame">
<div id="day_0_23H00"></div><div id="temp_day_0_23H00"></div>
</div>
</div>
<div class="stage">
</div>
<div>
<div class="frame">
<div id="desc_jour1"></div><div id="jour1"></div>
</div>
<div class="frame">
<div id="day_1_1H00"></div><div id="temp_day_1_1H00"></div>
</div>
<div class="frame">
<div id="day_1_3H00"></div><div id="temp_day_1_3H00"></div>
</div>
<div class="frame">
<div id="day_1_5H00"></div><div id="temp_day_1_5H00"></div>
</div>
<div class="frame">
<div id="day_1_7H00"></div><div id="temp_day_1_7H00"></div>
</div>
<div class="frame">
<div id="day_1_9H00"></div><div id="temp_day_1_9H00"></div>
</div>
<div class="frame">
<div id="day_1_11H00"></div><div id="temp_day_1_11H00"></div>
</div>
<div class="frame">
<div id="day_1_13H00"></div><div id="temp_day_1_13H00"></div>
</div>
<div class="frame">
<div id="day_1_15H00"></div><div id="temp_day_1_15H00"></div>
</div>
<div class="frame">
<div id="day_1_17H00"></div><div id="temp_day_1_17H00"></div>
</div>
<div class="frame">
<div id="day_1_19H00"></div><div id="temp_day_1_19H00"></div>
</div>
<div class="frame">
<div id="day_1_21H00"></div><div id="temp_day_1_21H00"></div>
</div>
<div class="frame">
<div id="day_1_23H00"></div><div id="temp_day_1_23H00"></div>
</div>
</div>
<div class="stage">
</div>
<div>
<div class="frame">
<div id="desc_jour2"></div><div id="jour2"></div>
</div>
<div class="frame">
<div id="day_2_1H00"></div><div id="temp_day_2_1H00"></div>
</div>
<div class="frame">
<div id="day_2_3H00"></div><div id="temp_day_2_3H00"></div>
</div>
<div class="frame">
<div id="day_2_5H00"></div><div id="temp_day_2_5H00"></div>
</div>
<div class="frame">
<div id="day_2_7H00"></div><div id="temp_day_2_7H00"></div>
</div>
<div class="frame">
<div id="day_2_9H00"></div><div id="temp_day_2_9H00"></div>
</div>
<div class="frame">
<div id="day_2_11H00"></div><div id="temp_day_2_11H00"></div>
</div>
<div class="frame">
<div id="day_2_13H00"></div><div id="temp_day_2_13H00"></div>
</div>
<div class="frame">
<div id="day_2_15H00"></div><div id="temp_day_2_15H00"></div>
</div>
<div class="frame">
<div id="day_2_17H00"></div><div id="temp_day_2_17H00"></div>
</div>
<div class="frame">
<div id="day_2_19H00"></div><div id="temp_day_2_19H00"></div>
</div>
<div class="frame">
<div id="day_2_21H00"></div><div id="temp_day_2_21H00"></div>
</div>
<div class="frame">
<div id="day_2_23H00"></div><div id="temp_day_2_23H00"></div>
</div>
</div>
<div class="stage">
</div>
<div class="autoHide">
<div class="frame">
<div id="desc_jour3"></div><div id="jour3"></div>
</div>
<div class="frame">
<div id="day_3_1H00"></div><div id="temp_day_3_1H00"></div>
</div>
<div class="frame">
<div id="day_3_3H00"></div><div id="temp_day_3_3H00"></div>
</div>
<div class="frame">
<div id="day_3_5H00"></div><div id="temp_day_3_5H00"></div>
</div>
<div class="frame">
<div id="day_3_7H00"></div><div id="temp_day_3_7H00"></div>
</div>
<div class="frame">
<div id="day_3_9H00"></div><div id="temp_day_3_9H00"></div>
</div>
<div class="frame">
<div id="day_3_11H00"></div><div id="temp_day_3_11H00"></div>
</div>
<div class="frame">
<div id="day_3_13H00"></div><div id="temp_day_3_13H00"></div>
</div>
<div class="frame">
<div id="day_3_15H00"></div><div id="temp_day_3_15H00"></div>
</div>
<div class="frame">
<div id="day_3_17H00"></div><div id="temp_day_3_17H00"></div>
</div>
<div class="frame">
<div id="day_3_19H00"></div><div id="temp_day_3_19H00"></div>
</div>
<div class="frame">
<div id="day_3_21H00"></div><div id="temp_day_3_21H00"></div>
</div>
<div class="frame">
<div id="day_3_23H00"></div><div id="temp_day_3_23H00"></div>
</div>
</div>
<!-- fin contenu -->
</div>
</div>
<!-- fin page -->
Code : Tout sélectionner
#ls_meteo1, #ls_meteo3, #ls_meteo25, #ls_meteo4,
#ls_meteo6, #ls_meteo7, #ls_meteo8, #ls_meteo9, #ls_meteo10, #ls_meteo11
{
font-family: arimo;
font-weight: normal;
color: #999;
font-size: 12px;
margin-top: -20px;
height: 20px;
line-height: 65px;
text-shadow: 1px 1px 5px black;
}
#desc_meteo1, #desc_meteo3, #desc_meteo25, #desc_meteo4, #moontxt,
#desc_meteo6, #desc_meteo7, #desc_meteo8, #desc_meteo9, #desc_meteo10, #desc_meteo11
{
font-family: arimo;
font-weight: normal;
/* color: #999; */
color: #F2DDB3;
font-size: 17px;
margin-top: -20px;
height: 25px;
line-height: 15px;
text-shadow: 1px 1px 4px black;
}
#meteo1, #meteo3, #meteo25, #moon
{
font-family: arimo;
font-weight: bold;
width: 230px;
padding: 5px;
/* border: 1px solid #1E1E1F; */
border: 1px solid transparent;
border-radius: 0px;
height: 152.5px;
line-height: 170px;
font-size: 100px;
color: #999;
margin: 0px ;
text-shadow: 1px 1px 4px black;
}
#meteo6, #meteo7, #meteo8, #meteo9, #meteo10, #meteo11
{
font-family: arimo;
font-weight: bold;
width: 162px;
padding: 10px;
/* border: 1px solid #1E1E1F; */
border: 1px solid transparent;
border-radius: 0px;
height: 58px;
line-height: 55px;
color: #999;
font-size:40px;
text-shadow: 1px 1px 4px black;
}
#meteo7, #meteo8, #meteo9, #meteo10
{
width: 134px;
}
#meteo6, #meteo11
{
width: 135px;
}
#desc_jour0, #desc_jour1, #desc_jour2, #desc_jour3,
#temp_day_0_1H00, #temp_day_0_3H00, #temp_day_0_5H00, #temp_day_0_7H00, #temp_day_0_9H00, #temp_day_0_11H00,
#temp_day_0_13H00, #temp_day_0_15H00, #temp_day_0_17H00, #temp_day_0_19H00, #temp_day_0_21H00, #temp_day_0_23H00,
#temp_day_1_1H00, #temp_day_1_3H00, #temp_day_1_5H00, #temp_day_1_7H00, #temp_day_1_9H00, #temp_day_1_11H00,
#temp_day_1_13H00, #temp_day_1_15H00, #temp_day_1_17H00, #temp_day_1_19H00, #temp_day_1_21H00, #temp_day_1_23H00,
#temp_day_2_1H00, #temp_day_2_3H00, #temp_day_2_5H00, #temp_day_2_7H00, #temp_day_2_9H00, #temp_day_2_11H00,
#temp_day_2_13H00, #temp_day_2_15H00, #temp_day_2_17H00, #temp_day_2_19H00, #temp_day_2_21H00, #temp_day_2_23H00,
#temp_day_3_1H00, #temp_day_3_3H00, #temp_day_3_5H00, #temp_day_3_7H00, #temp_day_3_9H00, #temp_day_3_11H00,
#temp_day_3_13H00, #temp_day_3_15H00, #temp_day_3_17H00, #temp_day_3_19H00, #temp_day_3_21H00, #temp_day_3_23H00
{
font-family: arimo;
font-weight: normal;
/* color: #999; */
color: #F2DDB3;
font-size: 15px;
margin-top: -20px;
height: 25px;
line-height: 15px;
text-shadow: 1px 1px 4px black;
}
.ghost
{
opacity: 0.3;
}
#jour,
#day_1H, #day_3H, #day_5H, #day_7H, #day_9H, #day_11H,
#day_13H, #day_15H, #day_17H, #day_19H, #day_21H, #day_23H
{
font-family: arimo;
font-weight: bold;
width: 46px;
padding: 10px;
border: 1px solid transparent;
color: #F2DDB3;
font-size: 13px;
text-shadow: 1px 1px 4px black;
}
#jour0,
#day_0_1H00, #day_0_3H00, #day_0_5H00, #day_0_7H00, #day_0_9H00, #day_0_11H00,
#day_0_13H00, #day_0_15H00, #day_0_17H00, #day_0_19H00, #day_0_21H00, #day_0_23H00
{
font-family: arimo;
font-weight: bold;
width: 46px;
padding: 10px;
/* border: 1px solid #1E1E1F; */
border: 1px solid transparent;
border-radius: 0px;
height: 58px;
line-height: 55px;
color: #999;
font-size:40px;
margin-top: -15px;
text-shadow: 1px 1px 4px black;
}
#jour1, #jour2, #jour3,
#day_1_1H00, #day_1_3H00, #day_1_5H00, #day_1_7H00, #day_1_9H00, #day_1_11H00,
#day_1_13H00, #day_1_15H00, #day_1_17H00, #day_1_19H00, #day_1_21H00, #day_1_23H00,
#day_2_1H00, #day_2_3H00, #day_2_5H00, #day_2_7H00, #day_2_9H00, #day_2_11H00,
#day_2_13H00, #day_2_15H00, #day_2_17H00, #day_2_19H00, #day_2_21H00, #day_2_23H00,
#day_3_1H00, #day_3_3H00, #day_3_5H00, #day_3_7H00, #day_3_9H00, #day_3_11H00,
#day_3_13H00, #day_3_15H00, #day_3_17H00, #day_3_19H00, #day_3_21H00, #day_3_23H00
{
font-family: arimo;
font-weight: bold;
width: 46px;
padding: 10px;
/* border: 1px solid #1E1E1F; */
border: 1px solid transparent;
border-radius: 0px;
height: 58px;
line-height: 55px;
color: #999;
font-size:40px;
margin-top: -10px;
text-shadow: 1px 1px 4px black;
}
#jour0, #jour1, #jour2, #jour3
{
width: 55px;
font-size:27px;
color:#F2DDB3;
text-align: left;
}
#sep
{
position: absolute;
margin-top: -40px;
margin-left: 0px;
border : 0;
height : 160px;
width : 1px;
background-image: -webkit-linear-gradient(top, transparent, #F2DDB3, transparent);
background-image: -moz-linear-gradient(top, transparent, #F2DDB3, transparent);
background-image: -ms-linear-gradient(top, transparent, #F2DDB3, transparent);
background-image: -o-linear-gradient(top, transparent, #F2DDB3, transparent);
background-image: linear-gradient(top, transparent, #F2DDB3, transparent);
}
@media screen and (min-height: 610px) {
#sep
{
height : 250px;
}
}Re: Custom page
tous les fichiers nécessaire à la météo avec phases lunaire,
à décompresser dans le répertoire monitor
à décompresser dans le répertoire monitor
Dernière modification par papoo le 04 sept. 2016, 23:01, modifié 2 fois.
Re: Custom page
Salut,
Un grand merci
Un grand merci