Compare commits
28 Commits
6e97f3d5b3
...
master
Author | SHA1 | Date | |
---|---|---|---|
03ddad9cd2 | |||
a4b24b2ad3 | |||
da4da9f7e2 | |||
4ee9d052dc | |||
c1514ed991 | |||
63b56ca2f1 | |||
7e725b434e | |||
b7c5787ed9 | |||
722560590c | |||
a205fc94f2 | |||
c18da96504 | |||
2400aba0ef | |||
54ca396d06 | |||
fe515e91c9 | |||
698a66eb68 | |||
93b5be4dda | |||
7df6dd7a67 | |||
6d51a58eb7 | |||
eed5d77ef7 | |||
35d9d000f2 | |||
6f9784fa13 | |||
f11a28c9c3 | |||
8e03a8040b | |||
4e366c4522 | |||
e9f018737d | |||
cf3bf079b3 | |||
afcc9f851c | |||
5bd3f07667 |
Before Width: | Height: | Size: 149 KiB |
BIN
files/chambre1/chambre_1-2020-11.resized.jpg
Normal file
After Width: | Height: | Size: 725 KiB |
BIN
files/chambre2/chambre_2-2020-11.resized.jpg
Normal file
After Width: | Height: | Size: 570 KiB |
BIN
files/chambre3/chambre3_2020-11.jpg
Normal file
After Width: | Height: | Size: 578 KiB |
BIN
files/entree_2020-11.jpg
Normal file
After Width: | Height: | Size: 633 KiB |
Before Width: | Height: | Size: 197 KiB |
BIN
files/salon_cuisine/jardin_sud-2020-11.jpg
Normal file
After Width: | Height: | Size: 934 KiB |
Before Width: | Height: | Size: 359 KiB |
BIN
files/salon_cuisine/sejour_cuisine_est-2020-11.jpg
Normal file
After Width: | Height: | Size: 809 KiB |
BIN
files/salon_cuisine/sejour_sud-2020-11.jpg
Normal file
After Width: | Height: | Size: 838 KiB |
Before Width: | Height: | Size: 65 KiB |
Before Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 211 KiB |
80617
files/src/chauvin.eps
Before Width: | Height: | Size: 24 MiB |
79584
files/src/chauvin.svg
Before Width: | Height: | Size: 5.8 MiB |
135
index.html
@ -17,9 +17,9 @@
|
|||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<title>Appartement 10 couchages à Valloire</title>
|
<title>Appartement 10 couchages à Valloire</title>
|
||||||
<meta name="google-site-verification" content="-l_rydDS2d9H86fv92rygM1ep1KxWHcSxfo09sBgtM8" />
|
<meta name="google-site-verification" content="-l_rydDS2d9H86fv92rygM1ep1KxWHcSxfo09sBgtM8" />
|
||||||
<meta name="keywords" content="valloire,appartement,location,ski,terrasse,wi-fi,wifi,parking" />
|
<meta name="keywords" content="valloire,appartement,location,ski,terrasse,wi-fi,wifi,parking,plain-pied" />
|
||||||
|
|
||||||
<meta name="description" content="Appartement 3 étoiles à louer dans la station de ski de Valloire. À 3 minutes des remontées mécaniques en navette gratuite. 10 couchages. 3 chambres. 2 salles-de-bains. Terrasse ensoleillée. Parking. Wifi." />
|
<meta name="description" content="Appartement de plain-pied 4 étoiles à louer dans la station de ski de Valloire. À 3 minutes des remontées mécaniques en navette gratuite. 10 couchages. 3 chambres. 2 salles-de-bains. Terrasse ensoleillée. Parking. Wifi." />
|
||||||
|
|
||||||
<meta http-equiv="content-language" content="fr" />
|
<meta http-equiv="content-language" content="fr" />
|
||||||
<link rel="icon" href="files/ski.ico" type="image/x-icon" />
|
<link rel="icon" href="files/ski.ico" type="image/x-icon" />
|
||||||
@ -36,13 +36,32 @@
|
|||||||
</style>
|
</style>
|
||||||
<script type='text/javascript'>
|
<script type='text/javascript'>
|
||||||
/* Set the width of the side navigation to 250px */
|
/* Set the width of the side navigation to 250px */
|
||||||
|
|
||||||
|
function myShow(e){e.style.display= "inline-block";}
|
||||||
|
|
||||||
|
function myHide(e){e.style.display= "none";}
|
||||||
|
|
||||||
function openNav() {
|
function openNav() {
|
||||||
document.getElementById("mySidenav").style.width = "250px";
|
document.getElementById("mySidenav").style.width = "300px";
|
||||||
|
document.getElementById("fixedbuttondiv").style.visibility = "hidden";
|
||||||
|
document.getElementById("navContent").style.display = "block";
|
||||||
|
document.getElementById("closeButton").style.display = "block";
|
||||||
|
/* ct = document.getElementsByClassName("navcontent"); */
|
||||||
|
/* ct.forEach(myShow); */
|
||||||
|
/* document.getElementById("mySidenav").style.opacity = 1.0; */
|
||||||
|
/* document.getElementById("mySidenavnav").style.display = "block"; */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set the width of the side navigation to 0 */
|
/* Set the width of the side navigation to 0 */
|
||||||
function closeNav() {
|
function closeNav() {
|
||||||
document.getElementById("mySidenav").style.width = "0";
|
document.getElementById("mySidenav").style.width = "0px";
|
||||||
|
document.getElementById("navContent").style.display = "none";
|
||||||
|
document.getElementById("closeButton").style.display = "none";
|
||||||
|
/* ct = document.getElementsByClassName("navcontent"); */
|
||||||
|
/* ct.forEach(myHide); */
|
||||||
|
|
||||||
|
/* document.getElementById("mySidenav").style.opacity = 1.0; */
|
||||||
|
/* document.getElementById("mySidenavnav").style.display = "none"; */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Manage navigation visibility */
|
/* Manage navigation visibility */
|
||||||
@ -86,9 +105,10 @@
|
|||||||
<li><b>Terrasse ensoleillée</b></li>
|
<li><b>Terrasse ensoleillée</b></li>
|
||||||
<li><b>2 salles d’eau</b></li>
|
<li><b>2 salles d’eau</b></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<p>Planning et réservations (utilisez le formulaire de contact
|
||||||
<p>Le planning de réservation et les tarifs sont consultables sur
|
pour la semaine qui vous intéresse depuis le
|
||||||
<a href="https://www.valloire.com/terrasses-des-choseaux-b6.html">Valloire Réservations</a>.</p>
|
planning d’occupation) sur
|
||||||
|
<a href="https://www.valloire.com/terrasses-des-choseaux-b6.html#tarifs">Valloire Réservations</a>.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -133,9 +153,10 @@
|
|||||||
data-uniqueid="page-zones__main-widgets__responsivecolumns-zones__column-widgets__content1">
|
data-uniqueid="page-zones__main-widgets__responsivecolumns-zones__column-widgets__content1">
|
||||||
<div class="bk-content-text js-text-content wysihtml-editor-content">
|
<div class="bk-content-text js-text-content wysihtml-editor-content">
|
||||||
|
|
||||||
<p>Appartement classé trois étoiles (<sup>★★★</sup>) de 89 m² avec
|
<p>Appartement classé quatre étoiles (<sup>★★★★</sup>) de
|
||||||
une place de parking extérieure et une place
|
89 m² avec une place de parking
|
||||||
de parking couverte.</p>
|
extérieure et une place de parking
|
||||||
|
couverte.</p>
|
||||||
|
|
||||||
<p>L’appartement est à 10 minutes à pied du
|
<p>L’appartement est à 10 minutes à pied du
|
||||||
centre de Valloire et des remontées
|
centre de Valloire et des remontées
|
||||||
@ -143,9 +164,10 @@
|
|||||||
minutes avec la navette gratuite qui
|
minutes avec la navette gratuite qui
|
||||||
effectue le trajet
|
effectue le trajet
|
||||||
<a href="https://www.valloire.net/commerce-et-service/navettes-skibus-valloire-hiver/" target="_blank"> toutes les ½ heures</a> durant
|
<a href="https://www.valloire.net/commerce-et-service/navettes-skibus-valloire-hiver/" target="_blank"> toutes les ½ heures</a> durant
|
||||||
la saison de ski (il s’agit de la navette
|
la saison de ski (il s’agit de la
|
||||||
« Hameau du col ⬄ Valloire », arrêt « Choseaux
|
navette « Le Col ⬄
|
||||||
Ville »).</p>
|
Valloire », arrêt « Les
|
||||||
|
Choseaux »).</p>
|
||||||
|
|
||||||
<p>En rez-de-jardin, il dispose d’une terrasse
|
<p>En rez-de-jardin, il dispose d’une terrasse
|
||||||
ensoleillée.</p>
|
ensoleillée.</p>
|
||||||
@ -153,6 +175,10 @@
|
|||||||
<p>Livré neuf en 2015, il est confortable et
|
<p>Livré neuf en 2015, il est confortable et
|
||||||
équipé d’un système de chauffage par le
|
équipé d’un système de chauffage par le
|
||||||
sol.</p>
|
sol.</p>
|
||||||
|
|
||||||
|
<p><smal><b>Adresse :</b> Appartement B6, Les Terrasses
|
||||||
|
des Choseaux, 709 route du Télégraphe,
|
||||||
|
73450 Valloire</smal></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
@ -587,7 +613,7 @@
|
|||||||
<li>Plaques à induction</li>
|
<li>Plaques à induction</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>La table permet de manger confortablement à 8. Une table supplémentaire permet de manger à 10, voire à 12 en se serrant un peu.</p>
|
<p>La table permet de manger confortablement à 10.</p>
|
||||||
|
|
||||||
<p>Côté salon, il y a un canapé convertible (140 × 190), et un téléviseur (chaînes par internet + satellite).</p>
|
<p>Côté salon, il y a un canapé convertible (140 × 190), et un téléviseur (chaînes par internet + satellite).</p>
|
||||||
|
|
||||||
@ -595,11 +621,11 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="galleria">
|
<div class="galleria">
|
||||||
<img src="files/salon_cuisine/cuisine-01.resized.jpg" data-title="Cuisine">
|
<img src="files/salon_cuisine/sejour_sud-2020-11.jpg" data-title="Salon vu depuis la cuisine (novembre 2020 : nouvelles table et chaises)"/>
|
||||||
<img src="files/salon_cuisine/salon-janvier-2018.resized.jpg" data-title="Salon vu depuis la cuisine"/>
|
<img src="files/salon_cuisine/salon-05.resized.jpg" data-title="Salon"/>
|
||||||
<img src="files/salon_cuisine/salon-05.resized.jpg" data-title="Salon">
|
<img src="files/salon_cuisine/salon-06.resized.jpg" data-title="Salon"/>
|
||||||
<img src="files/salon_cuisine/salon-06.resized.jpg" data-title="Salon">
|
<img src="files/salon_cuisine/sejour_cuisine_est-2020-11.jpg" data-title="Cuisine vue depuis le salon (novembre 2020 : nouvelles table et chaises)"/>
|
||||||
<img src="files/salon_cuisine/thumb_img_3740_1024.jpeg" data-title="Cuisine vue depuis le salon">
|
<img src="files/salon_cuisine/jardin_sud-2020-11.jpg" data-title="Vue"/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="bk-content-text js-text-content wysihtml-editor-content">
|
<div class="bk-content-text js-text-content wysihtml-editor-content">
|
||||||
@ -615,7 +641,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="galleria">
|
<div class="galleria">
|
||||||
<img src="files/chambre1/chambre3-07.resized.jpg" data-title="Chambre 1">
|
<img src="files/chambre1/chambre_1-2020-11.resized.jpg" data-title="Chambre 1 (nov. 2020)"/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="bk-content-text js-text-content wysihtml-editor-content">
|
<div class="bk-content-text js-text-content wysihtml-editor-content">
|
||||||
@ -633,7 +659,8 @@
|
|||||||
<div class="galleria">
|
<div class="galleria">
|
||||||
<img src="files/chambre2/chambre1-10.resized.jpg" data-title="Chambre 2"/>
|
<img src="files/chambre2/chambre1-10.resized.jpg" data-title="Chambre 2"/>
|
||||||
<img src="files/chambre2/chambre1-09.resized.jpg" data-title="Chambre 2"/>
|
<img src="files/chambre2/chambre1-09.resized.jpg" data-title="Chambre 2"/>
|
||||||
<img src="files/chambre2/chambre2-janvier-2018.resized.jpg" data-title="Chambre 2"/>
|
<img src="files/chambre2/chambre2-janvier-2018.resized.jpg" data-title="Chambre 2 (janvier 2018 : nouvelle tête de lit)"/>
|
||||||
|
<img src="files/chambre2/chambre_2-2020-11.resized.jpg" data-title="Chambre 2 (nov. 2020)"/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="bk-content-text js-text-content wysihtml-editor-content">
|
<div class="bk-content-text js-text-content wysihtml-editor-content">
|
||||||
@ -654,6 +681,7 @@
|
|||||||
<div class="galleria">
|
<div class="galleria">
|
||||||
<img src="files/chambre3/chambre2-01.resized.jpg" data-file="Chambre 3"/>
|
<img src="files/chambre3/chambre2-01.resized.jpg" data-file="Chambre 3"/>
|
||||||
<img src="files/chambre3/chambre3-janvier-2018.resized.jpg" data-title="Chambre 3"/>
|
<img src="files/chambre3/chambre3-janvier-2018.resized.jpg" data-title="Chambre 3"/>
|
||||||
|
<img src="files/chambre3/chambre3_2020-11.jpg" data-title="Chambre 3 (nov. 2020)"/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="bk-content-text js-text-content wysihtml-editor-content">
|
<div class="bk-content-text js-text-content wysihtml-editor-content">
|
||||||
@ -698,19 +726,21 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="bk-content-text js-text-content wysihtml-editor-content">
|
<div class="bk-content-text js-text-content wysihtml-editor-content">
|
||||||
<p>Le linge de maison est fourni : serviettes
|
<p>La fourniture des draps et du linge de maison
|
||||||
et gants de toilette, draps de douche, tapis de
|
constitue une prestation supplémentaire
|
||||||
|
disponible sur demande : serviettes et
|
||||||
|
gants de toilette, draps de douche, tapis de
|
||||||
bain, essuies-mains, torchons à vaisselle et
|
bain, essuies-mains, torchons à vaisselle et
|
||||||
serviettes de table.</p>
|
serviettes de table.</p>
|
||||||
<p>Literie :
|
<p>Literie :
|
||||||
<ul>
|
<ul>
|
||||||
<li>10 oreillers de 50×70 ;</li>
|
<li>10 oreillers de 50×70 ;</li>
|
||||||
<li>7 couettes de 140×200 (dont une d'été) ;</li>
|
<li>7 couettes de 140×200 (dont une d'été) ;</li>
|
||||||
<li>2 couettes de 200 × 200;</li>
|
<li>2 couettes de 200 × 200 ;</li>
|
||||||
<li>3 petites couvertures légères ;</li>
|
<li>4 couvertures 1 personne ;</li>
|
||||||
<li>une très grande couverture très chaude ; </li>
|
<li>2 couvertures 2 personnes ;</li>
|
||||||
<li>4 alèses pour lits de 90 × 190 (4 autres sont
|
<li>4 alèses pour lits de 90 × 190 (4 autres sont
|
||||||
à disposition sur demande)</li>
|
à disposition sur demande).</li>
|
||||||
</ul>
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
@ -720,24 +750,27 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="galleria">
|
<div class="galleria">
|
||||||
<img src="files/site-bandeau-2013-valloire-00036379.jpg" data-title="Valloire">
|
<img src="files/site-bandeau-2013-valloire-00036379.jpg" data-title="Valloire"/>
|
||||||
<img src="files/casiersskis20151128_1.resized.jpg" data-title="Casier à skis et chaussures">
|
<img src="files/entree_2020-11.jpg" data-title="Entrée (nov. 2020)"/>
|
||||||
|
<img src="files/casiersskis20151128_1.resized.jpg" data-title="Casier à skis et chaussures"/>
|
||||||
<img src="files/exterieur-parking.jpeg" data-title="Parking de la résidence"/>
|
<img src="files/exterieur-parking.jpeg" data-title="Parking de la résidence"/>
|
||||||
<img src="files/exterieur-vue-02.jpg" data-title="Vue"/>
|
<img src="files/exterieur-vue-02.jpg" data-title="Vue"/>
|
||||||
<img src="files/exterieur-terrasse.resized.jpg" data-title="Terrasse"/>
|
<img src="files/exterieur-terrasse.resized.jpg" data-title="Terrasse"/>
|
||||||
<img src="files/exterieur-table.resized.jpg" data-title="Vue depuis la terrasse"/>
|
<img src="files/exterieur-table.resized.jpg" data-title="Vue depuis la terrasse"/>
|
||||||
<img src="files/chambre1/chambre3-07.resized.jpg" data-title="Chambre 1"/>
|
<img src="files/chambre1/chambre_1-2020-11.resized.jpg" data-title="Chambre 1 (nov. 2020)"/>
|
||||||
<img src="files/chambre3/chambre2-01.resized.jpg" data-file="Chambre 3"/>
|
<img src="files/chambre3/chambre2-01.resized.jpg" data-file="Chambre 3"/>
|
||||||
<img src="files/chambre3/chambre3-janvier-2018.resized.jpg" data-title="Chambre 3"/>
|
<img src="files/chambre3/chambre3-janvier-2018.resized.jpg" data-title="Chambre 3"/>
|
||||||
|
<img src="files/chambre3/chambre3_2020-11.jpg" data-title="Chambre 3 (nov. 2020)"/>
|
||||||
<img src="files/sdb/sdb2-02.resized.jpg" data-title="Salle-de-bains 1"/>
|
<img src="files/sdb/sdb2-02.resized.jpg" data-title="Salle-de-bains 1"/>
|
||||||
<img src="files/chambre2/chambre1-09.resized.jpg" data-title="Chambre 2"/>
|
<img src="files/chambre2/chambre1-09.resized.jpg" data-title="Chambre 2"/>
|
||||||
<img src="files/chambre2/chambre1-10.resized.jpg" data-title="Chambre 2"/>
|
<img src="files/chambre2/chambre1-10.resized.jpg" data-title="Chambre 2"/>
|
||||||
<img src="files/chambre2/chambre2-janvier-2018.resized.jpg" data-title="Chambre 2"/>
|
<img src="files/chambre2/chambre2-janvier-2018.resized.jpg" data-title="Chambre 2 (janvier 2018 : nouvelle tête de lit)"/>
|
||||||
<img src="files/salon_cuisine/cuisine-01.resized.jpg" data-title="Cuisine">
|
<img src="files/chambre2/chambre_2-2020-11.resized.jpg" data-title="Chambre 2 (nov. 2020)"/>
|
||||||
<img src="files/salon_cuisine/salon-05.resized.jpg" data-title="Salon">
|
<img src="files/salon_cuisine/salon-05.resized.jpg" data-title="Salon"/>
|
||||||
<img src="files/salon_cuisine/salon-06.resized.jpg" data-title="Salon">
|
<img src="files/salon_cuisine/salon-06.resized.jpg" data-title="Salon"/>
|
||||||
<img src="files/salon_cuisine/thumb_img_3740_1024.jpeg" data-title="Cuisine vue depuis le salon">
|
<img src="files/salon_cuisine/sejour_sud-2020-11.jpg" data-title="Salon vu depuis la cuisine (novembre 2020 : nouvelles table et chaises)"/>
|
||||||
<img src="files/salon_cuisine/salon-janvier-2018.resized.jpg" data-title="Salon vu depuis la cuisine"/>
|
<img src="files/salon_cuisine/sejour_cuisine_est-2020-11.jpg" data-title="Cuisine vue depuis le salon (novembre 2020 : nouvelles table et chaises)"/>
|
||||||
|
<img src="files/salon_cuisine/jardin_sud-2020-11.jpg" data-title="Vue"/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -763,27 +796,29 @@
|
|||||||
|
|
||||||
<div class="bk-content-text js-text-content wysihtml-editor-content">
|
<div class="bk-content-text js-text-content wysihtml-editor-content">
|
||||||
<p>Comme nous n’habitons pas Valloire, la remise des clés est assurée par la société Guy Grange.</p>
|
<p>Comme nous n’habitons pas Valloire, la remise des clés est assurée par la société Guy Grange.</p>
|
||||||
|
<p>Planning et réservations (utilisez le formulaire de contact
|
||||||
<p>Le planning de réservation et les tarifs sont consultables sur
|
pour la semaine qui vous intéresse depuis le
|
||||||
<a href="https://www.valloire.com/terrasses-des-choseaux-b6.html">Valloire Réservations</a>.</p>
|
planning d’occupation) sur
|
||||||
|
<a href="https://www.valloire.com/terrasses-des-choseaux-b6.html#tarifs">Valloire Réservations</a>.</p>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- Todo : regarder https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_sidenav et https://www.w3schools.com/howto/howto_js_sidenav.asp -->
|
<!-- Todo : regarder https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_sidenav et https://www.w3schools.com/howto/howto_js_sidenav.asp -->
|
||||||
<div id="mySidenav" class="sidenav">
|
<div id="mySidenav" class="sidenav">
|
||||||
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
|
<a id="closeButton" href="javascript:void(0)" onclick="closeNav()">✗</a>
|
||||||
<nav>
|
<nav id="navContent">
|
||||||
<ul>
|
<ul>
|
||||||
<li ><a href="#descriptif">Descriptif</a></li>
|
<li ><a href="#descriptif">Descriptif</a></li>
|
||||||
<li ><a href="#situation">Situation</a></li>
|
<li ><a href="#situation">Situation</a></li>
|
||||||
<li ><a href="#plan">Plan</a></li>
|
<li ><a href="#plan">Plan</a></li>
|
||||||
<li><a href="#piece_principale">Piece principale</a></li>
|
<li ><a href="#piece_principale">Pièces :
|
||||||
<li><a href="#chambre_1">Chambre 1</a></li>
|
<a href="#piece_principale" title="Cuisine et salon">🍽</a>
|
||||||
<li><a href="#chambre_2">Chambre 2</a></li>
|
<a href="#chambre_1" title="Chambre 1">🛏</a>
|
||||||
<li><a href="#chambre_3">Chambre 3</a></li>
|
<a href="#chambre_2" title="Chambre 2">🛏</a>
|
||||||
<li><a href="#salles_eau">Salles d’eau</a></li>
|
<a href="#chambre_3" title="Chambre 3">🛏</a>
|
||||||
|
<a href="#salles_eau" title="Salles d’eau">🚿</a></a>
|
||||||
|
</li >
|
||||||
<li ><a href="#divers">Divers</a></li>
|
<li ><a href="#divers">Divers</a></li>
|
||||||
<li ><a href="#literie">Literie</a></li>
|
<li ><a href="#literie">Literie</a></li>
|
||||||
<li ><a href="#photos">Photos</a></li>
|
<li ><a href="#photos">Photos</a></li>
|
||||||
@ -793,7 +828,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div id="fixedbuttondiv">
|
<div id="fixedbuttondiv">
|
||||||
<a href="#head" onclick="openNav()">
|
<a href="#head" onclick="openNav()">
|
||||||
<img id="fixedbutton" src="files/menu.png" >
|
<img id="fixedbutton" src="files/menu.png"/>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
557
inventaire.html
Normal file
@ -0,0 +1,557 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr-FR" xml:lang="fr-FR">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="generator" content="pandoc" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||||
|
<title>Inventaire Dubuval</title>
|
||||||
|
<style>
|
||||||
|
code{white-space: pre-wrap;}
|
||||||
|
span.smallcaps{font-variant: small-caps;}
|
||||||
|
span.underline{text-decoration: underline;}
|
||||||
|
div.column{display: inline-block; vertical-align: top; width: 50%;}
|
||||||
|
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
|
||||||
|
ul.task-list{list-style: none;}
|
||||||
|
</style>
|
||||||
|
<link rel="stylesheet" href="pandoc.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header id="title-block-header">
|
||||||
|
<h1 class="title">Inventaire Dubuval</h1>
|
||||||
|
</header>
|
||||||
|
<h2 id="entrée">Entrée</h2>
|
||||||
|
<ul class="task-list">
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
interphone</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 grand placard</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 fer à repasser</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 pelle à neige</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 escabeau à 4 marches</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 planche à repasser</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 balai poussière</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 balai espagnol avec seau réceptacle</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 pelle + balayette</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>1 aspirateur Rowenta</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
produits ménagers</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
porte-manteaux : 36 patères</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
meuble « après-ski »</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
3 corbeilles</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="séjourcuisine">Séjour/Cuisine</h2>
|
||||||
|
<ul class="task-list">
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 cartographie</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
3 cadres</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
4 tringlettes</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
6 rideaux</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>1 télévision LG + télécommande</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>1 décodeur + box orange + télécommande</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>1 décodeur branché en HDMI sur la télévision</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>1 boîtier Tydom</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 téléphone</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 meuble à 3 tiroirs</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 table basse en bois</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 lampadaire mono-branche</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 lampadaire à 3 spots</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 fauteuil en cuir + 2 repose pieds</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 canapé 2 places</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 canapé Rapido</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 petits coussins assortis</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 protège matelas de 140 cm</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>1 plaid rouge</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 table pliante bois</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 grande coupe à fruits en verre</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 meuble de rangement vitré</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 meuble bois 3 tiroirs 2 portes</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 table bois</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
10 chaises pliantes</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 escabeau à 2 marches</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 paires de jumelles</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
jeux de société</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 suspensions (éclairage)</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 mini-chaîne</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 lecteur-enregistreur de DVD</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 collier magnétique (ou boucle magnifique) pour malentendants appareillés</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 adapteur électrique</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="électro-ménager">Électro-ménager</h2>
|
||||||
|
<ul class="task-list">
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 réfrigérateur<ul class="task-list">
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 bac à légumes</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
4 éléments de porte</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 partie congélateur</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
3 tiroirs</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
5 plaques en verre</li>
|
||||||
|
</ul></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 four électrique Viva<ul class="task-list">
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 plaques de four</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 grilles de four</li>
|
||||||
|
</ul></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 four à micro-ondes Candy<ul class="task-list">
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 plateau tournant</li>
|
||||||
|
</ul></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 plaque à induction 4 feux</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 hotte</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 lave-vaisselle</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 lave-linge sèche-linge</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 balance électronique de cuisine (5 kg max)</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>1 service à fondue électrique</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>1 appareil à raclette/grill</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>1 cafetière Magimix Nespresso</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>1 cafetière électrique</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>1 grille-pain</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>1 bouilloire « Cosy Life »</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>1 robot Kenwood + accessoires</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>1 pierrade Tefal</strong></li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="vaisselle">Vaisselle</h2>
|
||||||
|
<ul class="task-list">
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 cafetière à piston</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 théières en pyrex</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 théières en faïence</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
9 tasses à café</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 coquetiers</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
23 assiettes plates</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
23 assiettes à dessert</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
24 assiettes creuses</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
26 verres</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
12 verres ballons</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
11 flûtes à champagne</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
19 bols</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
10 mugs</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>1 cocotte-minute</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 faitout + couvercle</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
3 casseroles + 3 couvercles</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 sauteuse + couvercle pyrex</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 couvercle universel</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 chinois</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 passoire en plastique</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
3 saladiers</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
3 plats à gratin en faïence</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
3 plats à gratin en pyrex</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 presse fruits en pyrex</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
9 moules à gâteaux en silicone</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 moule à cake</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 moule à gâteaux métallique</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 essoreuse à salade</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 crépière</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 poêles</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 planches à découper</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 carafes en pyrex</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 carafe en faïence</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 plateau à desservir</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 support aimanté pour couteaux</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 couteaux à découper</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 couteau à pain</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
4 couteaux d’office</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 fusil à aiguiser</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
4 suspensions sur tringlettes</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 égouttoirs à vaisselle sur tringlettes</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
3 pots à ustensiles</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 service à salade en bois</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 service à salade en plastique</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 cuillères en bois</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 spatule en bois</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 pinceaux en silicone</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 écumoire</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 écrase purée</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 louche</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 fouet</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 range couverts</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
25 cuillères à soupe</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
26 couteaux en inox</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
22 fourchettes</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
25 petites cuillères</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 casse-noix</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 économe</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 presse-ail</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 limonadier</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 paire de ciseaux</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 cuillères à confiture</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 pelle à gâteaux</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 râpe plate universelle</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
5 dessous de plats métalliques</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 fourchette et 1 cuillère de service</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 spatule en plastique</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 maryses en silicone</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 séparateur de jaunes d’œufs</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 cuillère portionneuse à glace</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 boule à thé individuelle</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 couscoussier / cuit-vapeur de 8 L</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="salle-deau-1">Salle d’eau 1</h2>
|
||||||
|
<ul class="task-list">
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 miroir avec tablette</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 meuble colonne porte-miroir</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
3 étagères en verre</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 chaise pliante</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 poubelle à pédale</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 porte-manteau sur porte à 3 patères</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 support 3 étagères métallique</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 porte serviettes à 4 branches</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 miroir de rasage</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 support serviette invité</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 sèche-cheveux</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="wc">WC</h2>
|
||||||
|
<ul class="task-list">
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 dévidoir papier</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 balayette + socle</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="salle-deau-2">Salle d’eau 2</h2>
|
||||||
|
<ul class="task-list">
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 miroir avec tablette</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 meubles colonne dont 1 avec miroir et 3 étagères en verre</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 chaise pliante</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 porte serviette 4 branches</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 poubelle à pédale</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 porte-manteau sur porte à 3 patères</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 support 3 étagères métallique</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 support serviette invité</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 porte-manteau sur porte à 3 patères</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 porte-manteau à 3 patères</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 sèche-cheveux</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="chambre-1">Chambre 1</h2>
|
||||||
|
<ul class="task-list">
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 tringlettes et 2 voilages</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 chaise pliante</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 armoire penderie à 2 portes</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 cadre</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 étagères en bois</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 lampes de chevet</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 téléphone</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 sommiers et 2 matelas de 80 cm</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 protèges matelas PVC-coton</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>2 couettes</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>2 oreillers</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 chaise haute</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 applique (éclairage)</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 porte-manteau sur porte à 4 patères</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 lit bébé bois pliant 60 cm × 120 cm</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 matelas bébé</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 protège matelas bébé</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 drap housse bébé</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 couette bébé</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 housse de couette bébé</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="chambre-2">Chambre 2</h2>
|
||||||
|
<ul class="task-list">
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 tringlette et 1 voilage</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 lit 140 cm</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
4 tiroirs de rangement</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 matelas de 140 cm</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 protège matelas PVC-coton</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>2 oreillers</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
<strong>1 couette</strong></li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 dessus de lit écru à pompoms</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 tablettes en bois</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 lampes de chevet rouges</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 armoire penderie à 2 portes et 4 tiroirs</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 applique (éclairage)</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 porte-manteau sur porte à 4 patères</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 radio-réveil</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="chambre-3">Chambre 3</h2>
|
||||||
|
<ul class="task-list">
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 tringlettes et 2 voilages</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 ensembles de lits superposés sur coffres avec portes coulissantes</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
4 spots</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
8 matelas superposés 2 par 2 (maintenus par Velcro)</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
4 alèses PVC-coton</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
7 oreillers</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
4 couettes</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
3 chaises pliantes</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 étagère en bois</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 commode en bois à 3 tiroirs</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 suspension (éclairage)</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 bureau</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 porte-manteau sur porte à 4 patères</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="literie">Literie</h2>
|
||||||
|
<ul class="task-list">
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
taies d’oreiller</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
oreillers</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
draps housse de 140 cm</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
draps housse de 80 cm et de 90 cm</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
draps housse de 80 cm</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
drap housse de 60 cm × 120 cm</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
housses de couette 1 place</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
housse de couette 2 places</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
housse de couette bébé</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
protège matelas bébé</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
protèges matelas de 80 cm</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
protèges matelas de 90 cm</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
protèges matelas de 140 cm</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
4 couvertures 1 place</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 couvertures 2 places</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="autre-linge-de-maison">Autre linge de maison</h2>
|
||||||
|
<ul class="task-list">
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
serviettes de table</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
draps de douche</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
serviettes de toilette</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
tapis de bains</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
essuies mains</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
gants de toilette</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
serviettes invités</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
torchons à vaisselle</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="terrasse-jardin">Terrasse jardin</h2>
|
||||||
|
<ul class="task-list">
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 table 12 places avec bancs fixes</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 parasol déporté 3 m × 4 m</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 petit parasol</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
4 fauteuils de jardin plastique blanc</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 fauteuils relax</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
2 chaises longues</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 grand barbecue Weber à gaz</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 petit barbecue Weber à charbon</li>
|
||||||
|
<li><input type="checkbox" disabled="" />
|
||||||
|
1 grand coffre de rangement</li>
|
||||||
|
</ul>
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
inventaire.pdf
Normal file
49128
linge.html
Normal file
25
mon_site.css
@ -752,7 +752,7 @@ header.bk-header .wrapper .widget.extendednavigation{-webkit-box-flex:1;-moz-box
|
|||||||
}
|
}
|
||||||
.headerprofile{background-color:#fff;}
|
.headerprofile{background-color:#fff;}
|
||||||
.widget.logo{display:inline-block;vertical-align:middle;line-height:0;margin-right:16px;}
|
.widget.logo{display:inline-block;vertical-align:middle;line-height:0;margin-right:16px;}
|
||||||
.widget.companyname{display:inline-block;vertical-align:middle;padding:10px 0;}
|
.widget.companyname{display:inline-block;vertical-align:middle;padding:10px 0 0 60px;}
|
||||||
footer.bk-footer{padding:4em 0;background-color:#313131;}
|
footer.bk-footer{padding:4em 0;background-color:#313131;}
|
||||||
footer.bk-footer h1,footer.bk-footer h2,footer.bk-footer h3,footer.bk-footer h4,footer.bk-footer p,footer.bk-footer span{max-width:390px;color:#fff;}
|
footer.bk-footer h1,footer.bk-footer h2,footer.bk-footer h3,footer.bk-footer h4,footer.bk-footer p,footer.bk-footer span{max-width:390px;color:#fff;}
|
||||||
footer.bk-footer h2{color:#fff;}
|
footer.bk-footer h2{color:#fff;}
|
||||||
@ -1025,27 +1025,31 @@ table {width: 450px; height: 204px;border-collapse: collapse; border-spacing: 0p
|
|||||||
tr.table_header {height: 19px;background-color: rgb(230, 230, 230);font-weight: bold;}
|
tr.table_header {height: 19px;background-color: rgb(230, 230, 230);font-weight: bold;}
|
||||||
p.vert {writing-mode: tb-rl}
|
p.vert {writing-mode: tb-rl}
|
||||||
|
|
||||||
|
div#mySidenav { width = 0px;}
|
||||||
|
|
||||||
/* The side navigation menu */
|
/* The side navigation menu */
|
||||||
.sidenav {
|
div.sidenav {
|
||||||
height: 100%; /* 100% Full-height */
|
height: 100%; /* 100% Full-height */
|
||||||
width: 0; /* 0 width - change this with JavaScript */
|
width: 0px; /* 0 width - change this with JavaScript */
|
||||||
position: fixed; /* Stay in place */
|
position: fixed; /* Stay in place */
|
||||||
z-index: 1; /* Stay on top */
|
z-index: 3; /* Stay on top */
|
||||||
top: 0; /* Stay at the top */
|
top: 0; /* Stay at the top */
|
||||||
left: 0;
|
left: 0;
|
||||||
background-color: #111; /* Black*/
|
background-color: #111; /* Black*/
|
||||||
overflow-x: hidden; /* Disable horizontal scroll */
|
over>flow-x: hidden; /* Disable horizontal scroll */
|
||||||
padding-top: 40px; /* Place content 60px from the top */
|
padding-top: 40px; /* Place content 60px from the top */
|
||||||
transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
|
transition: 0.8s; /* 0.5 second transition effect to slide in the sidenav */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sidenav nav { display: none}
|
||||||
|
|
||||||
/* The navigation menu links */
|
/* The navigation menu links */
|
||||||
.sidenav a {
|
.sidenav a {
|
||||||
padding: 8px 8px 8px 8px;
|
padding: 8px 8px 8px 8px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
/* font-size: 25px; */
|
/* font-size: 25px; */
|
||||||
color: #818181;
|
color: #818181;
|
||||||
display: block;
|
display: inline-block;
|
||||||
transition: 0.3s;
|
transition: 0.3s;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1063,8 +1067,15 @@ p.vert {writing-mode: tb-rl}
|
|||||||
margin-left: 40px;
|
margin-left: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a#closeButton {
|
||||||
|
display: none;
|
||||||
|
text-align: end;
|
||||||
|
font-size: 26px;
|
||||||
|
}
|
||||||
|
|
||||||
#fixedbutton {
|
#fixedbutton {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 10px;
|
top: 10px;
|
||||||
left: 10px;
|
left: 10px;
|
||||||
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
359
pandoc.css
Normal file
@ -0,0 +1,359 @@
|
|||||||
|
/*
|
||||||
|
* I add this to html files generated with pandoc.
|
||||||
|
*/
|
||||||
|
|
||||||
|
html {
|
||||||
|
font-size: 100%;
|
||||||
|
overflow-y: scroll;
|
||||||
|
-webkit-text-size-adjust: 100%;
|
||||||
|
-ms-text-size-adjust: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
color: #444;
|
||||||
|
font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 1.7;
|
||||||
|
padding: 1em;
|
||||||
|
margin: auto;
|
||||||
|
background: #fefefe;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width:600px) {
|
||||||
|
body {
|
||||||
|
-moz-column-count: 1;
|
||||||
|
-webkit-column-count: 1;
|
||||||
|
column-count:1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width:600px) and (max-width:900px) {
|
||||||
|
body {
|
||||||
|
-moz-column-count: 2;
|
||||||
|
-webkit-column-count: 2;
|
||||||
|
column-count:2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width:900px) and (max-width:1200px) {
|
||||||
|
body{
|
||||||
|
-moz-column-count: 3;
|
||||||
|
-webkit-column-count: 3;
|
||||||
|
column-count:3;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width:1200px) {
|
||||||
|
body{
|
||||||
|
-moz-column-count: 4;
|
||||||
|
-webkit-column-count: 4;
|
||||||
|
column-count:4;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #0645ad;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: #0b0080;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #06e;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:active {
|
||||||
|
color: #faa700;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:focus {
|
||||||
|
outline: thin dotted;
|
||||||
|
}
|
||||||
|
|
||||||
|
*::-moz-selection {
|
||||||
|
background: rgba(255, 255, 0, 0.3);
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
*::selection {
|
||||||
|
background: rgba(255, 255, 0, 0.3);
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
a::-moz-selection {
|
||||||
|
background: rgba(255, 255, 0, 0.3);
|
||||||
|
color: #0645ad;
|
||||||
|
}
|
||||||
|
|
||||||
|
a::selection {
|
||||||
|
background: rgba(255, 255, 0, 0.3);
|
||||||
|
color: #0645ad;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
color: #333;
|
||||||
|
line-height: 125%;
|
||||||
|
margin-top: 2em;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4, h5, h6 {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 2.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
font-size: 1.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h5 {
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h6 {
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
color: #666666;
|
||||||
|
margin: 0;
|
||||||
|
padding-left: 3em;
|
||||||
|
border-left: 0.5em #EEE solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
display: block;
|
||||||
|
height: 2px;
|
||||||
|
border: 0;
|
||||||
|
border-top: 1px solid #aaa;
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
margin: 1em 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre, code, kbd, samp {
|
||||||
|
color: #000;
|
||||||
|
font-family: monospace, monospace;
|
||||||
|
_font-family: 'courier new', monospace;
|
||||||
|
font-size: 0.98em;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
white-space: pre;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
|
b, strong {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
dfn {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
ins {
|
||||||
|
background: #ff9;
|
||||||
|
color: #000;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
mark {
|
||||||
|
background: #ff0;
|
||||||
|
color: #000;
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub, sup {
|
||||||
|
font-size: 75%;
|
||||||
|
line-height: 0;
|
||||||
|
position: relative;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
|
sup {
|
||||||
|
top: -0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub {
|
||||||
|
bottom: -0.25em;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul, ol {
|
||||||
|
margin: 1em 0;
|
||||||
|
padding: 0 0 0 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
li p:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul ul, ol ol {
|
||||||
|
margin: .3em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
dl {
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
dt {
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: .8em;
|
||||||
|
}
|
||||||
|
|
||||||
|
dd {
|
||||||
|
margin: 0 0 .8em 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
dd:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
border: 0;
|
||||||
|
-ms-interpolation-mode: bicubic;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
figure {
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
margin: 1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
figure img {
|
||||||
|
border: none;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
figcaption {
|
||||||
|
font-size: 0.8em;
|
||||||
|
font-style: italic;
|
||||||
|
margin: 0 0 .8em;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
margin-bottom: 2em;
|
||||||
|
border-bottom: 1px solid #ddd;
|
||||||
|
border-right: 1px solid #ddd;
|
||||||
|
border-spacing: 0;
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
|
||||||
|
table th {
|
||||||
|
padding: .2em 1em;
|
||||||
|
background-color: #eee;
|
||||||
|
border-top: 1px solid #ddd;
|
||||||
|
border-left: 1px solid #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
table td {
|
||||||
|
padding: .2em 1em;
|
||||||
|
border-top: 1px solid #ddd;
|
||||||
|
border-left: 1px solid #ddd;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.author {
|
||||||
|
font-size: 1.2em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 480px) {
|
||||||
|
body {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media only screen and (min-width: 768px) {
|
||||||
|
body {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media print {
|
||||||
|
* {
|
||||||
|
background: transparent !important;
|
||||||
|
color: black !important;
|
||||||
|
filter: none !important;
|
||||||
|
-ms-filter: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-size: 12pt;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:visited {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
height: 1px;
|
||||||
|
border: 0;
|
||||||
|
border-bottom: 1px solid black;
|
||||||
|
}
|
||||||
|
|
||||||
|
a[href]:after {
|
||||||
|
content: " (" attr(href) ")";
|
||||||
|
}
|
||||||
|
|
||||||
|
abbr[title]:after {
|
||||||
|
content: " (" attr(title) ")";
|
||||||
|
}
|
||||||
|
|
||||||
|
.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
|
|
||||||
|
pre, blockquote {
|
||||||
|
border: 1px solid #999;
|
||||||
|
padding-right: 1em;
|
||||||
|
page-break-inside: avoid;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr, img {
|
||||||
|
page-break-inside: avoid;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
@page :left {
|
||||||
|
margin: 15mm 20mm 15mm 10mm;
|
||||||
|
}
|
||||||
|
|
||||||
|
@page :right {
|
||||||
|
margin: 15mm 10mm 15mm 20mm;
|
||||||
|
}
|
||||||
|
|
||||||
|
p, h2, h3 {
|
||||||
|
orphans: 3;
|
||||||
|
widows: 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2, h3 {
|
||||||
|
page-break-after: avoid;
|
||||||
|
}
|
||||||
|
}
|
84
sitemap.xml
@ -2,127 +2,123 @@
|
|||||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||||
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
|
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
|
||||||
<url>
|
<url>
|
||||||
<loc>http://dubuval.dubuget.fr/index.html</loc>
|
<loc>https://dubuval.dubuget.fr/index.html</loc>
|
||||||
|
<loc>https://dubuval.dubuget.fr/inventaire.html</loc>
|
||||||
|
<loc>https://dubuval.dubuget.fr/inventaire.pdf</loc>
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/site-bandeau-2013-valloire-00036379.jpg</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/site-bandeau-2013-valloire-00036379.jpg</image:loc>
|
||||||
<image:caption>Panorama</image:caption>
|
<image:caption>Panorama</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/situation.png</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/situation.png</image:loc>
|
||||||
<image:caption>Plan de situation</image:caption>
|
<image:caption>Plan de situation</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/plan_1.resized.png</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/plan_1.resized.png</image:loc>
|
||||||
<image:caption>Plan de l’appartement</image:caption>
|
<image:caption>Plan de l’appartement</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/salon_cuisine/cuisine-01.resized.jpg</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/salon_cuisine/cuisine-01.resized.jpg</image:loc>
|
||||||
<image:caption>Cuisine</image:caption>
|
<image:caption>Cuisine</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/salon_cuisine/salon-01.resized.jpg</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/salon_cuisine/img_1185.jpg</image:loc>
|
||||||
<image:caption>Salon vu depuis la cuisine</image:caption>
|
<image:caption>Salon vu depuis la cuisine</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/salon_cuisine/salon-05.resized.jpg</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/salon_cuisine/salon-05.resized.jpg</image:loc>
|
||||||
<image:caption>Salon</image:caption>
|
<image:caption>Salon</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/salon_cuisine/salon-06.resized.jpg</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/salon_cuisine/salon-06.resized.jpg</image:loc>
|
||||||
<image:caption>Salon</image:caption>
|
<image:caption>Salon</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/salon_cuisine/thumb_img_3740_1024.jpeg</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/salon_cuisine/img_1182.jpg</image:loc>
|
||||||
<image:caption>Cuisine vue depuis le salon</image:caption>
|
<image:caption>Cuisine vue depuis le salon</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
|
<image:image>
|
||||||
|
<image:loc>https://dubuval.dubuget.fr/files/chambre2/chambre2-janvier-2018.resized.jpg</image:loc>
|
||||||
|
<image:caption>Chambre 2</image:caption>
|
||||||
|
</image:image>
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/chambre1/chambre3-07.resized.jpg</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/chambre1/chambre3-07.resized.jpg</image:loc>
|
||||||
<image:caption>Chambre 1</image:caption>
|
<image:caption>Chambre 1</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/chambre2/chambre1-10.resized.jpg</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/chambre3/chambre3-janvier-2018.resized.jpg</image:loc>
|
||||||
<image:caption>Chambre 2</image:caption>
|
|
||||||
</image:image>
|
|
||||||
|
|
||||||
|
|
||||||
<image:image>
|
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/chambre2/chambre1-09.resized.jpg</image:loc>
|
|
||||||
<image:caption>Chambre 2</image:caption>
|
|
||||||
</image:image>
|
|
||||||
|
|
||||||
|
|
||||||
<image:image>
|
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/chambre3/chambre2-01.resized.jpg</image:loc>
|
|
||||||
<image:caption>Chambre 3</image:caption>
|
<image:caption>Chambre 3</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/chambre3/chambre2-02.resized.jpg</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/chambre2/chambre1-10.resized.jpg</image:loc>
|
||||||
|
<image:caption>Chambre 2</image:caption>
|
||||||
|
</image:image>
|
||||||
|
|
||||||
|
<image:image>
|
||||||
|
<image:loc>https://dubuval.dubuget.fr/files/chambre2/chambre1-09.resized.jpg</image:loc>
|
||||||
|
<image:caption>Chambre 2</image:caption>
|
||||||
|
</image:image>
|
||||||
|
|
||||||
|
<image:image>
|
||||||
|
<image:loc>https://dubuval.dubuget.fr/files/chambre3/chambre2-01.resized.jpg</image:loc>
|
||||||
<image:caption>Chambre 3</image:caption>
|
<image:caption>Chambre 3</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/sdb/sdb1-03.resized.jpg</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/sdb/sdb1-03.resized.jpg</image:loc>
|
||||||
<image:caption>Salle-de-bains 2</image:caption>
|
<image:caption>Salle-de-bains 2</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/sdb/sdb1-04.resized.jpg</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/sdb/sdb1-04.resized.jpg</image:loc>
|
||||||
<image:caption>Salle-de-bains 2</image:caption>
|
<image:caption>Salle-de-bains 2</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/sdb/sdb2-02.resized.jpg</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/sdb/sdb2-02.resized.jpg</image:loc>
|
||||||
<image:caption>Salle-de-bains 1</image:caption>
|
<image:caption>Salle-de-bains 1</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/casiersskis20151128_1.resized.jpg</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/casiersskis20151128_1.resized.jpg</image:loc>
|
||||||
<image:caption>Casier à skis et chaussures</image:caption>
|
<image:caption>Casier à skis et chaussures</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/exterieur-parking.jpeg</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/exterieur-parking.jpeg</image:loc>
|
||||||
<image:caption>Parking de la résidence</image:caption>
|
<image:caption>Parking de la résidence</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/exterieur-vue-02.jpg</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/exterieur-vue-02.jpg</image:loc>
|
||||||
<image:caption>Vue</image:caption>
|
<image:caption>Vue</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/exterieur-terrasse.resized.jpg</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/exterieur-terrasse.resized.jpg</image:loc>
|
||||||
<image:caption>Terrasse</image:caption>
|
<image:caption>Terrasse</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
|
|
||||||
<image:image>
|
<image:image>
|
||||||
<image:loc>http://dubuval.dubuget.fr/files/exterieur-table.resized.jpg</image:loc>
|
<image:loc>https://dubuval.dubuget.fr/files/exterieur-table.resized.jpg</image:loc>
|
||||||
<image:caption>Vue depuis la terrasse</image:caption>
|
<image:caption>Vue depuis la terrasse</image:caption>
|
||||||
</image:image>
|
</image:image>
|
||||||
|
|
||||||
|
<image:image>
|
||||||
|
<image:loc>https://dubuval.dubuget.fr/files/menu.png</image:loc>
|
||||||
|
<image:caption>Menu icon</image:caption>
|
||||||
|
</image:image>
|
||||||
</url>
|
</url>
|
||||||
</urlset>
|
</urlset>
|
||||||
|