/*PAGE DE STYLE CSS DEFINITIVE*/

body{
    background-image: url("images/FOND.jpg");
    background-position: center;
    background-repeat: repeat;
    font-family: "Oldenburg", "Times New Roman", serif;
    font-weight: 300;
    font-size: 14px;
}

/*ELEMENTS PRINCIPAUX DE LA PAGE*/
.parent{
    display: grid;
    grid-template-columns: 0px 150px 1fr;
    grid-template-rows: 70px 1fr;
    grid-column-gap: 1px;
    grid-row-gap: 10px;
    overflow: hidden;
    border: 3px dotted white;
    border-radius: 40px;
	border-style: solid;
	border-width: 40px;
	border-image-source: url(images/contenant.png);
	border-image-slice: 40 40 40 40; /* haut | droit | bas | gauche */
	background-color: #884d25;
    height: 680px;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-top: 120px;
}

.head{
    grid-area: 1 / 1 / 2 / 4;
    max-height: 100px;
}

.my{
    grid-area: 2 / 1 / 3 / 2;
    position: fixed;
    width: 100px;
    height : 200px;
    margin-top: 150px;
    margin-left: 820px;
}

.menu{
    grid-area: 2 / 2 / 3 / 3;
    width: 150px;
    overflow: auto;
    background-image: url("images/pinterest-logo.jpg");
    background-repeat: no-repeat;
    background-size: 130px;
    padding-top: 150px;
}

.cnt{ /*cnt pour contenant, le div qui contient toutes les entrées (voir insert plus bas)*/
    grid-area: 2 / 3 / 3 / 4;
    overflow: auto;
}

/*Foot n'est pas compris dans la grille "parent"*/
.foot{
    font-size: 10px;
    height: 20px;
    width: 800px;
    margin : 5px auto auto auto;
}

.insert{ /* Element div permettant de créer des "entrées de journal à l'intérieur du cnt"*/
    margin-bottom: 20px;
    padding: 2px;
    background-color: #ADD8E6;
    border: 1px solid black;
}














/*Si je met un slash+étoile devant et derrière une propriété, la propriété est annulé : comme ça : /*color: red;* / ! C'est très utiliser pour les sites en javascript mais je n'en sais pas plus !*/

h1{
    font-size: 30px;
    color: yellow;
}

a{
    font-style: italic;
}


#p1{
    font-family: Arial;
}

.p1{
    font-size: 10px;
}

#p2{
    font-family: Comic Sans MS;
}

.div-test1{
    border: 1px solid black;
}

.div-test2{
    border: 1px solid black;
    font-family: arial;
    background-color: #ffffff;
    height: 100px;
    overflow-y: scroll;
}
.div-test3{
    border: 1px solid black;
    font-family: arial;
    background-color: #ffffff;
    height: 100px;
    overflow-y: scroll;
}
hr{
    border: 0px solid black;
    border-top: 6px double white;
    width: 300px;
}