﻿/************************************************************************************************
					  	            MaçonnerieDenisRolland.com
-------------------------------------------------------------------------------------------------
			 				  	          histoire.css
		  	 			           Cascading styles sheet V3.0         
-------------------------------------------------------------------------------------------------
                    Définie les éléments spécifiques à la page histoire.html  
-------------------------------------------------------------------------------------------------
                      Copyright © 2020 Patrick Fitzback, tous droit reservée
************************************************************************************************/
/*-----------------------------------------------------------------------------------------------
                                          Élément HTML
-----------------------------------------------------------------------------------------------*/
h3 {
    background-color: rgba(76, 0, 0, 0.3)
}

video {
    float: right;
    margin-top: 8px;
    margin-left: 16px;
    margin-bottom: 16px;
    box-shadow: black 0px 0px 8px;
    border: white solid 3px;
    width: 100%;
    height: auto;
    max-width: 350px;
}

article {
    padding-bottom: 2px;
}

/*-----------------------------------------------------------------------------------------------
                                         Élément unique
-----------------------------------------------------------------------------------------------*/
#date {
    margin-top: -8px;
    background-color: rgba(76, 0, 0, 0.3);
}

#prix {
    width: 100%;
    height: auto;
    max-width: 350px;
}

#denis {
    width:40%;
    max-width:250px;
}

/*-----------------------------------------------------------------------------------------------
                         Modification pour les écrans extra larges
-----------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 1199px) {

    article {
        padding-bottom:15px;
    }

}

/*-----------------------------------------------------------------------------------------------
                           Modification pour les écrans larges
-----------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 991px) {

    article {
        padding-bottom:61px;
    }

    video {
        margin-top: 34px;
        max-width: 305px;
    }

    #prix {
        max-width: 323px;
    }
}

/*-----------------------------------------------------------------------------------------------
                          Modification pour les écrans moyens
-----------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {

    article {
        padding-bottom:44px;
    }

    video, #prix {
        float: none;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 16px;
        margin-bottom: 16px;
    }

    #denis {
        width: 101%;
        float: none;
        display: block;
        margin: auto;
        margin-bottom: 32px;
    }

}