Monday, November 30, 2020

Custom Gallery Tutorial Part 3

 

 

 

 

#result{

    displaygrid;

    grid-template-columns1fr 1fr 1fr;

    grid-template-rowsauto;

    grid-gap25px;

    text-aligncenter;

    /* margin-top: 100px ; */

    padding10px;

    border-radius15px;

    /* border: 2px solid green; */

    height570px;

    overflow-yauto;

    width90%;

    margin-top40px;

    margin-leftauto;

    margin-rightauto;

    margin-bottom0px;

    background-attachmentfixed;

    /* background-color: rgb(10, 10, 10); */

}

 

#result::-webkit-scrollbar {

    displaynone;

}

 

#result img{

    width100%;

    height:380px;

    background-repeatno-repeat;

    background-sizecover;

    cursorpointer;

    background-positioncenter;

    border-radius5px;

    border2px solid rgb(248243243);

}

 

#result img:hover{

   opacity0.7;

   transitionall ease-in-out 100ms;

   /* background: black; */

   /* background-image: radial-gradient(red,green); */

}

 

No comments:

Post a Comment