Sunday, October 18, 2020

Password Generator CSS

 *{

    padding0;
    margin0;
    overflowhidden;
}

body{
    background-colorblack;
}


.container {
    displayflex;
    width393px;
    height310px;
    margin220px auto;
    bordernone;
    flex-directioncolumn;
    align-itemscenter;
    justify-contentcenter;
    border-radius10px;
    background-coloryellowgreen;
}

#block{
    displayflex;
    border2px solid black;
    /* padding: 5px; */
    width350px;
    padding20px 10px;
    align-itemscenter;
    justify-contentbaseline;
    font-size20px;
}

#textarea{
    background-colorblack;
    colorwhite;
    border-radius5px;
    width200px;
    height20px;


}

#clipboard{
    margin-left30px;
    border-radius5px;
    background-colorskyblue;
    height30px;
    width40px;
}


#length{
    background-colorblack;
    colorwhite;
    positionrelative;
    right0px;
    width20px;
    margin0px 20px;
}

.check{
    /* margin-left: 30px; */
    positionrelative;
    right-30px;
   
}

#generatepassword{
    /* border: 2px solid black; */
    background-colorred;
    border-radius15px;
    colorwhite;
    font-size20px;
    widthinherit;
    padding5px;
    outlinenone;
}



No comments:

Post a Comment