Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
abhay-dev2901 authored Mar 12, 2024
1 parent c4f97cd commit bbd487d
Showing 1 changed file with 31 additions and 22 deletions.
53 changes: 31 additions & 22 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,18 @@ body{
justify-content: space-evenly;
align-items: center;
margin: 200px;
margin: 0;
margin-top: 100px;
padding: 0;
}

.heading{
color: grey;
font-size: 20px;
font-weight: 1000;
}



.Passwordbox{
/* border: 2px solid white; */
width: 30em;
Expand All @@ -36,6 +43,7 @@ body{
justify-content: space-between;
align-items: center;
padding: 20px;
color: grey;
}


Expand Down Expand Up @@ -63,11 +71,8 @@ li{
}

input[type="checkbox"]{
display: none;
}

.custom-checkbox{
display: inline-block;
/* display: none; */
-webkit-appearance: none;
width: 15px;
height: 15px;
border: 1px solid white;
Expand All @@ -76,20 +81,19 @@ input[type="checkbox"]{
position: relative;
cursor: pointer;
background-color: rgba(128, 128, 128, 0.102);
}

.custom-checkbox:checked::before{
}
input[type="checkbox"]:checked::before{
content: "\2713";
display: block;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 12px;

}

.custom-checkbox:checked{
input[type="checkbox"]:checked{
background-color: greenyellow;
color: black;
}
Expand Down Expand Up @@ -146,8 +150,8 @@ input[type="range"]::-webkit-slider-thumb:active{
}


a{
text-decoration: none;
button{
border: none;
}


Expand All @@ -158,12 +162,6 @@ a{
}


.heading p{
color: rgb(161, 161, 161);
margin-top: 100px;
font-weight: 1000;
}

ul{
list-style-type: none;
}
Expand Down Expand Up @@ -202,15 +200,26 @@ material-symbols-outlined{
color: yellowgreen;
}

.Charlen{
font-size: 30px;
color: yellowgreen;
}

.length{
display: flex;
justify-content: space-evenly;
align-items: center;
width: fit-content;
height: 50px;
background-color: rgba(128, 128, 128, 0);
}

.length .length > p{
background-color: rgba(255, 0, 0, 0);

}

.length span{
font-size: 30px;
color: yellowgreen;
background-color: rgba(128, 128, 128, 0);
}



0 comments on commit bbd487d

Please sign in to comment.